Slots

Beta: Get booked slots for a site

get
Authorizations
AuthenticationstringRequired

Authentication is token based. You can issue a token for your API request from the 'API' section of the settings menu. The token MUST be sent in a Authorization header with each request.

Example of authenticated request

$ curl -X GET -H "Authorization: Token <your token>" "https://api.dashdoc.eu/api/v4/"
Path parameters
site-slugstringRequired

The slug identifier of the site

Query parameters
updated_sincestring Β· date-timeOptional

Filter slots updated since this datetime

pageinteger Β· min: 1Optional

Page number for pagination

Default: 1
include_draftbooleanOptional

Include draft slots in the response

Default: false
custom_field__<label>stringOptional

Filter slots by custom field label and value. Replace <label> with the actual custom field label name. The value comparison is case-insensitive. Multiple custom field filters can be combined with AND logic.

Examples:

  • ?custom_field__Order Number=ORD123 - Filter slots with custom field "Order Number" = "ORD123"
  • ?custom_field__Order Number=ORD123&custom_field__Truck Color=blue - Filter slots with both custom fields matching
Responses
get
/flow/sites/{site-slug}/slots/

Last updated

Was this helpful?