Skip to content

List pickup history for a store

GET
/api/stores/{storeId}/pickups/history/{fromDate}/{toDate}

Authorizations

api_key

Requests manipulating data need to supply a CSRF token

TypeAPI Key (header: X-CSRF-Token)

Parameters

Path Parameters

storeId*
Typeinteger
Required
Minimum1
fromDate*
Typestring
Required
Format"date-time"
toDate*
Typestring
Required
Format"date-time"

Responses

Success

application/json
JSON
[
{
"confirmed": 0,
"date": "string",
"date_ts": 0,
"description": "string",
"profile": {
"id": 0,
"name": "string",
"avatar": "string",
"isSleeping": true,
"mobile": "string",
"landline": "string",
"isManager": true
}
}
]

Playground

Authorization
Variables
Key
Value

Samples

cURL
JavaScript
PHP
Python