Retrieves details of an entity for editing,
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/program/entities/{id} \
--header 'Authorization: Bearer <token>'
{
"profile": {},
"fields": [
{}
],
"profilePic": "<string>",
"donations": [
{}
],
"entity": {},
"profileThumb": "<string>",
"sponsors": [
{}
],
"programData": {},
"submit": [
{}
],
"program": {},
"name": "<string>",
"settings": {},
"details": {}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Entity ID of the entity to edit
Entity edit details fetched successfully
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/program/entities/{id} \
--header 'Authorization: Bearer <token>'
{
"profile": {},
"fields": [
{}
],
"profilePic": "<string>",
"donations": [
{}
],
"entity": {},
"profileThumb": "<string>",
"sponsors": [
{}
],
"programData": {},
"submit": [
{}
],
"program": {},
"name": "<string>",
"settings": {},
"details": {}
}