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
Successful operation
Success message
"Successful"
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"
}