Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

List all CRM notes

GET/v1/crm/notes
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Query parameters
statusstring
Responses
200OK
itemsCRMNote[] | nullrequired
Show properties
Array of CRMNote
bodystringrequired
body_richCRMRichText
Show properties
jsonanyrequired
plain_textstringrequired
typestringrequired
created_atstringrequired
created_bystring
idstringrequired
object_idstring
object_kindstring
targetsCRMActivityTarget[] | nullrequired
Show properties
Array of CRMActivityTarget
created_atstringrequired
created_bystring
idstringrequired
object_idstringrequired
object_kindstringrequired
updated_atstringrequired
titlestringrequired
updated_atstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X GET "/v1/crm/notes"
Response
{
  "items": [
    {
      "body": "string",
      "body_rich": {
        "json": "string",
        "plain_text": "string",
        "type": "string"
      },
      "created_at": "string",
      "created_by": "string",
      "id": "string",
      "object_id": "string",
      "object_kind": "string",
      "targets": [
        {
          "created_at": "string",
          "created_by": "string",
          "id": "string",
          "object_id": "string",
          "object_kind": "string",
          "updated_at": "string"
        }
      ],
      "title": "string",
      "updated_at": "string"
    }
  ]
}