Core resources
Api requestsAttribute optionsBooking flow
Query availabilitySearch availabilityBookPossible options per attribute
iduuidUnique identifier
created_attimestamp with time zoneCreation timestamp
nameMultiLanguageStringLocalized name
orderintegerOrder of the option in the list of options as displayed on widgets and websites
JSON
{
"id": "00000000-0000-0000-0000-000000000000",
"attribute_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2026-03-12T06:54:55.878Z",
"name": {
"default": "Hello",
"nl-NL": "Hallo"
},
"order": 1
}idFilter<uuid>Unique identifier
created_atFilter<timestamp with time zone>Creation timestamp
nameFilter<MultiLanguageString>Localized name
orderFilter<integer>Order of the option in the list of options as displayed on widgets and websites
200A list of attribute options with the selected columns
206Partial Content
GET /attribute_optionscurl -X GET "https://api.bookingmood.com/v1/attribute_options?select=*" \
-H "Authorization: Bearer YOUR_API_KEY"Partial<AttributeOption> | Array<Partial<AttributeOption>>201The newly created attribute options with the selected columns
POST /attribute_optionscurl -X POST "https://api.bookingmood.com/v1/attribute_options" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '[]'idFilter<uuid>Unique identifier
created_atFilter<timestamp with time zone>Creation timestamp
nameFilter<MultiLanguageString>Localized name
orderFilter<integer>Order of the option in the list of options as displayed on widgets and websites
204The deleted attribute options with the selected columns
DELETE /attribute_optionscurl -X DELETE "https://api.bookingmood.com/v1/attribute_options" \
-H "Authorization: Bearer YOUR_API_KEY"idFilter<uuid>Unique identifier
created_atFilter<timestamp with time zone>Creation timestamp
nameFilter<MultiLanguageString>Localized name
orderFilter<integer>Order of the option in the list of options as displayed on widgets and websites
Partial<AttributeOption>204The updated attribute options with the selected columns
PATCH /attribute_optionscurl -X PATCH "https://api.bookingmood.com/v1/attribute_options" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{}'