Skip to content

Get past pickups of a user.

GET
/api/pickup/history

Might be restricted (to the last month or one entry at least) depending on the permissions.

Authorizations

Parameters

Query Parameters

fsId
Typestring
page
Typestring
pageSize
Typestring

Responses

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