List pickups for a store
GET
/api/stores/{storeId}/pickups
Authorizations
api_key
Requests manipulating data need to supply a CSRF token
TypeAPI Key (header: X-CSRF-Token)
Parameters
Path Parameters
storeId*
Typestring
RequiredPattern
"[1-9][0-9]*"Responses
Success
application/json
JSON
[
{
"date": "string",
"totalSlots": 5,
"occupiedSlots": [
{
"isConfirmed": true,
"profile": {
"id": 0,
"name": "string",
"avatar": "string",
"isSleeping": true,
"mobile": "string",
"landline": "string",
"isManager": true
}
}
],
"isAvailable": true,
"description": "string"
}
]