curl --request PUT \
--url https://api.helpyousponsor.com/v1/admin/notes/{note_id}/{program_id} \
--header 'Content-Type: application/json' \
--header 'X-HYS-API-Key: <api-key>' \
--data '
{
"note": "This is a note.",
"categories": "ALL",
"category_id": 1,
"client_id": "1",
"id": 1,
"note_id": 1,
"program_id": "donor"
}
'{
"message": "Successful"
}API key generated from Developer Settings. Format: hys_...
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 'Content-Type: application/json' \
--header 'X-HYS-API-Key: <api-key>' \
--data '
{
"note": "This is a note.",
"categories": "ALL",
"category_id": 1,
"client_id": "1",
"id": 1,
"note_id": 1,
"program_id": "donor"
}
'{
"message": "Successful"
}