XUND API Documentation

GET /v1/services/features/:countryCode

This endpoint is for retrieving data about accessible properties of the services in different views by country.

Request

Request URL parameters

Parameter name

Parameter type

Parameter description

countryCode

CountryCode

Country code to retrieve service features for


Response

Response Body data structure

Property name

Property type

Property description

filters

Array<keyof Service>

Filterable properties of Services in the given country

listFields

Array<keyof Service>

Properties contained by the Service elements of the service list in the given country

detailedFields

Array<keyof Service>

Properties contained by the Service details in the given country

Example response

Example response
JSON
{
    "filters": [
        "genders",
        "locations",
        "name",
        "openingHours",
        "specializations"
    ],
    "detailedFields": [
        "id",
        "gender",
        "location",
        "name",
        "openingHours",
        "specializations",
        "type",
        "monogram"
    ],
    "listFields": [
        "id",
        "gender",
        "location",
        "name",
        "type",
        "monogram"
    ]
}