Slots
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: 1OptionalDefault:
Page number for pagination
1include_draftbooleanOptionalDefault:
Include draft slots in the response
falsecustom_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
200
Get successful
application/json
404
Site not found
application/json
get
/flow/sites/{site-slug}/slots/Last updated
Was this helpful?