cURL
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" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Record's unique id
The main content of the note
Unique identifier of the note
ID of the record this note is attached to
Text content of the note
Creation date and time (ISO 8601)
Was this page helpful?