Retrieves data for the sponsored table based on the given program ID, client ID, and filter.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/sponsorships/{program_id}/headers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1",
"filter": true,
"program_id": 1
}'
{
"data": [
{}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Program ID for which to fetch sponsored table data
ID and client ID to fetch details for
The body is of type object
.
Sponsored table data fetched successfully
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/sponsorships/{program_id}/headers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1",
"filter": true,
"program_id": 1
}'
{
"data": [
{}
]
}