Notes

Create a Note

Creates a note for one or more contacts.

Supported content formats: plaintext and Markdown.

post/notes

Request body

Example request

{
  "note": {
    "content": "Line one\n- bullet\n",
    "contact_ids": [
      "ec5252fe-9abc-4096-85e9-1374e70a3182"
    ],
    "note_tag_id": "56a1bed4-9ac4-4bd1-8533-077f3ae465c3"
  }
}

Response

Note successfully created

Example response

{
  "note": {
    "id": "3c5728ed-a09e-4245-bb33-459b67600be3",
    "contact_ids": [
      "ec5252fe-9abc-4096-85e9-1374e70a3182"
    ],
    "note_tag_id": "56a1bed4-9ac4-4bd1-8533-077f3ae465c3",
    "content": null,
    "created_at": "2025-02-01T22:08:21.175Z"
  }
}

Changes