Skip to content

Get past pickups of a user.

GET
/api/pickup/history

Might be restricted to the last month depending on the permissions.

Authorizations

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

Parameters

Query Parameters

fsId
Typestring
page
Typestring
pageSize
Typestring

Responses

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

Samples

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