Get all booking ticket properties
Get a list of all booking ticket properties. Booking ticket properties define the custom attributes that can be attached to booking tickets - for example, service type, location, or capacity. Property IDs and values are used as filters in GET /booking-tickets.
Query parameters
The number of records to return in API response.
⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.
The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.
Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.
Direction of sorting the response list.
Search record by name or a part of the name.
Headers
The unique ID of the language code by ISO 639-1.
Response
OK
Example response
{
"data": {
"booking_ticket_properties": [
{
"property_id": "size",
"name": "Size",
"description": "size",
"data_type": "string",
"items": [
{
"id": "8fd73167342d0689c4c015320",
"name": "{\"en\":\"evening\",\"cz\":\"vecer\"}",
"resource_record_id": "67342d3167342d0689c4c00689c4",
"state": 1
}
],
"last_change": "2019-06-20 14:48:09",
"state": 1
}
],
"total_items": 1
}
}