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