Skip to content

Get all pickup options a user has, including already registered slots.

GET
/api/pickup/options

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Parameters

Query Parameters

page
Typestring
pageSize
Typestring

Responses

Success
Authorization
api_key
Variables
Key
Value
page
pageSize
cURL
curl -X GET \
'http://localhost/api/pickup/options'

Samples

cURL
curl -X GET http://localhost/api/pickup/options
JavaScript
fetch("http://localhost/api/pickup/options")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/pickup/options");
Python
import requests
response = requests.get("http://localhost/api/pickup/options")
print(response.json())