v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Notes

Get a note

get/crm/notes/{id}

Path parameters

idstring required

Note ID to get

Response

Returns the Note by id

idstring

Unique note Id

textstring required

Text content of a note

contactIdsinteger[]

Contact ids linked to a note

dealIdsstring[]

Deal ids linked to a note

authorIdobject

Account details of user which created the note

createdAtstring date-time

Note created date/time

updatedAtstring date-time

Note updated date/time

Example response

{
  "createdAt": "2017-05-01T17:05:03.000Z",
  "id": "61a5cd07ca1347c82306ad09",
  "text": "In communication with client for resolution of queries.",
  "authorId": {
    "id": "61a5ce58y5d4795761045991",
    "email": "johndoe@example.com",
    "locale": "en_GB",
    "timezone": "Asia/Kolkata",
    "name": {
      "fullName": "John Doe"
    }
  },
  "dealIds": [
    "61a5ce58c5d4795761045990",
    "61a5ce58c5d4795761045991"
  ],
  "contactIds": [
    247,
    1,
    2
  ],
  "updatedAt": "2017-05-01T17:05:03.000Z"
}