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
Sponsored table data fetched successfully
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": [
{}
]
}