curl --request GET \
--url https://api.helpyousponsor.com/v1/files/{type}/{id}/table \
--header 'Authorization: Bearer <token>'
{
"files": [
{}
],
"box_exists": true,
"type": "<string>",
"s": "<string>",
"n": 123,
"id": 123,
"sponsors": [
{}
],
"entities": [
{}
],
"useBox": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Type of the file (entity or donor)
ID of the entity or donor
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/files/{type}/{id}/table \
--header 'Authorization: Bearer <token>'
{
"files": [
{}
],
"box_exists": true,
"type": "<string>",
"s": "<string>",
"n": 123,
"id": 123,
"sponsors": [
{}
],
"entities": [
{}
],
"useBox": true
}