Skip to main content
POST
/
2025-09
/
notes
Create a Note
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer Token necessary to use API

Body

application/json

Create Note Request

content
string
required

The content of the note

resource
object
required
metadata
object

Set of key-value pairs for storing additional information on the note. Learn more about metadata.

Response

note successfully created

Single Note

note
object

Note

meta
object