PUT
/
admin
/
notes
/
{note_id}
/
{program_id}
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

note_id
integer
required

ID of the note

program_id
string
required

ID of the program

Example:

"donor"

Body

application/json

Input data format

The body is of type object.

Response

200
application/json

Successful operation

The response is of type object.