Get all future pickups a user has registered.
GET
/api/pickup/registeredAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Query Parameters
fsId
Typestring
Responses
Authorization
api_key
Variables
Key
Value
fsId
cURL
curl -X GET \
'http://localhost/api/pickup/registered'
Samples
cURL
curl -X GET http://localhost/api/pickup/registered
JavaScript
fetch("http://localhost/api/pickup/registered")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/pickup/registered");
Python
import requests
response = requests.get("http://localhost/api/pickup/registered")
print(response.json())