Skip to content

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

GET
/api/pickup/options

Authorizations

Parameters

Query Parameters

page
Typestring
pageSize
Typestring

Responses

Success

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())