v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Notes

Create a note

post/crm/notes

Request body

textstring required

Text content of a note

contactIdsinteger[]

Contact Ids linked to a note

dealIdsstring[]

Deal Ids linked to a note

companyIdsstring[]

Company Ids linked to a note

Example request

{
  "companyIds": [
    "61a5ce58c5d4795761045990",
    "61a5ce58c5d4795761045991"
  ],
  "text": "In communication with client for resolution of queries.",
  "dealIds": [
    "61a5ce58c5d4795761045990",
    "61a5ce58c5d4795761045991"
  ],
  "contactIds": [
    247,
    1,
    2
  ]
}

Response

Created new note

idstring

Unique note Id

Example response

{
  "id": "61a5cd07ca1347c82306ad09"
}