curl --request POST \
--url https://public-api.stora.co/2025-09/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "Note content",
"resource": {
"id": "con_1234567890abcdef"
},
"metadata": {
"external_id": "crm_12345",
"source": "api_import"
}
}
'{
"note": {
"id": "note_a1b2c3d4e5f67890",
"content": "Note content",
"created_at": "2025-02-22T14:41:00Z",
"creator": {
"id": "app_531844f4c4837d61"
},
"metadata": {
"external_id": "crm_12345",
"source": "api_import"
},
"resource": {
"id": "con_1234567890abcdef"
},
"updated_at": "2025-02-22T14:41:00Z"
},
"meta": {
"request_id": "01563646-58c1-4607-8fe0-cae3e92c4477",
"curies": [
{
"name": "bo",
"href": "https://app.stora.test{rel}",
"templated": true,
"title": "Backoffice"
},
{
"name": "sf",
"href": "https://acme.stora.test{rel}",
"templated": true,
"title": "Storefront"
}
]
}
}Create a new note.
Required authorization scope: public.note:write
curl --request POST \
--url https://public-api.stora.co/2025-09/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"content": "Note content",
"resource": {
"id": "con_1234567890abcdef"
},
"metadata": {
"external_id": "crm_12345",
"source": "api_import"
}
}
'{
"note": {
"id": "note_a1b2c3d4e5f67890",
"content": "Note content",
"created_at": "2025-02-22T14:41:00Z",
"creator": {
"id": "app_531844f4c4837d61"
},
"metadata": {
"external_id": "crm_12345",
"source": "api_import"
},
"resource": {
"id": "con_1234567890abcdef"
},
"updated_at": "2025-02-22T14:41:00Z"
},
"meta": {
"request_id": "01563646-58c1-4607-8fe0-cae3e92c4477",
"curies": [
{
"name": "bo",
"href": "https://app.stora.test{rel}",
"templated": true,
"title": "Backoffice"
},
{
"name": "sf",
"href": "https://acme.stora.test{rel}",
"templated": true,
"title": "Storefront"
}
]
}
}Bearer Token necessary to use API
Create Note Request
The content of the note
Show child attributes
Set of key-value pairs for storing additional information on the note. Learn more about metadata.
Show child attributes
Was this page helpful?