POST
/
admin
/
notes
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "cat": "",
  "id": "1",
  "program_id": "donor",
  "type": "donor",
  "client_id": "1"
}'
{
  "id": 123,
  "name": "<string>",
  "categories": [
    {}
  ],
  "notes": [
    {}
  ],
  "cat": "<string>",
  "program": {},
  "hysform": {},
  "program_id": 123,
  "type": "<string>",
  "submit": [
    {}
  ],
  "donor": {},
  "profileThumb": "<string>",
  "entity": {},
  "emailsets": {},
  "years": [
    {}
  ],
  "template_errors": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
id
string
required

Donor ID

Example:

"1"

program_id
string
required
Example:

"donor"

type
string
required
Example:

"donor"

cat
string
Example:

""

client_id
string
Example:

"1"

Response

200
application/json
Successful operation
id
integer
name
string
categories
object[]
notes
object[]
cat
string
program
object
hysform
object
program_id
integer
type
string
submit
object[]
donor
object
profileThumb
string
entity
object
emailsets
object
years
object[]
template_errors
object[]