Skip to main content
GET
/
v2
/
notes
/
{id}
Retrieve a Note
curl --request GET \
  --url https://api.fructu.co/v2/notes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

id
string
required

Note's unique id

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)