curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/wrapped/{year}/status \
--header 'Authorization: Bearer <token>'
{
"status": "calculating",
"lastCalculated": "2023-11-07T05:31:56Z",
"error": "<string>",
"progress": 75
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Year to check status for
2024
Status check successful
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/wrapped/{year}/status \
--header 'Authorization: Bearer <token>'
{
"status": "calculating",
"lastCalculated": "2023-11-07T05:31:56Z",
"error": "<string>",
"progress": 75
}