Skip to content

Get all future pickups a user has registered.

GET
/api/pickup/registered

Authorizations

Parameters

Query Parameters

fsId
Typestring

Responses

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