curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/notes/{note_id}/{program_id} \
--header 'Authorization: Bearer <token>'
{
"note": {},
"program_id": 123,
"type": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the note
1
ID of the program
"donor"
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/notes/{note_id}/{program_id} \
--header 'Authorization: Bearer <token>'
{
"note": {},
"program_id": 123,
"type": "<string>"
}