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
note
string
Example:

"This is a note."

categories
string

The note categories

Example:

"ALL"

category_id
integer
Example:

1

client_id
string
Example:

"1"

id
integer

The note id

Example:

1

note_id
integer
Example:

1

program_id
string
Example:

"donor"

Response

200
application/json
Successful operation
message
string

Success message

Example:

"Successful"