curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/notes/{type}/{program_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"note": "This is a note.",
"entity_id": "1",
"donor_id": "1",
"client_id": "1",
"program_id": "donor",
"type": "donor",
"categories": "ALL"
}'
{
"message": "Successful"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Input data format
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/notes/{type}/{program_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"note": "This is a note.",
"entity_id": "1",
"donor_id": "1",
"client_id": "1",
"program_id": "donor",
"type": "donor",
"categories": "ALL"
}'
{
"message": "Successful"
}