Skip to main content
POST
/
v2
/
notes
Create a Note
curl --request POST \
  --url https://api.fructu.co/v2/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "record": "<string>",
  "content": "<string>"
}
'
{
  "id": "<string>",
  "record": "<string>",
  "content": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
record
string
required

Record's unique id

content
string
required

The main content of the note

Response

200 - application/json
id
string
required

Unique identifier of the note

record
string
required

ID of the record this note is attached to

content
string
required

Text content of the note

created_at
string<date-time>
required

Creation date and time (ISO 8601)