Lists user agenda on a specific day, including pickups and events. The only works for future pickups and events.
GET
/api/foodsaver/{fsId}/agenda/{onDate}Authorizations
Parameters
Path Parameters
fsId*
Typestring
RequiredonDate*
Typestring
RequiredResponses
Samples
cURL
curl -X GET http://localhost/api/foodsaver/{fsId}/agenda/{onDate}
JavaScript
fetch("http://localhost/api/foodsaver/{fsId}/agenda/{onDate}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/foodsaver/{fsId}/agenda/{onDate}");
Python
import requests
response = requests.get("http://localhost/api/foodsaver/{fsId}/agenda/{onDate}")
print(response.json())