Fetches a specific template and associated pictures based on the client ID.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/template \
--header 'Authorization: Bearer <token>'
{
"template": {},
"pics": [
{}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Template data fetched successfully
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/template \
--header 'Authorization: Bearer <token>'
{
"template": {},
"pics": [
{}
]
}