Skip to content

Lists all pickups into which a user is signed in on a specific day, including unconfirmed ones. This only works for future pickups.

GET
/api/foodsaver/{fsId}/pickups/{onDate}

Authorizations

Parameters

Path Parameters

fsId*
Typestring
Required
onDate*
Typestring
Required

Responses

Samples

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