Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Successful operation
The list of admins
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/email_manager/admins \
--header 'Authorization: Bearer <token>'{
"admins": [
{
"id": 123,
"name": "<string>",
"email": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful operation
The list of admins
Show child attributes
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/email_manager/admins \
--header 'Authorization: Bearer <token>'{
"admins": [
{
"id": 123,
"name": "<string>",
"email": "<string>"
}
]
}