Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Create global CRM note

POST/v1/crm/notes
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Request body
requiredapplication/json
bodystringrequired
body_richCRMRichText
Show properties
jsonanyrequired
plain_textstringrequired
typestringrequired
targetsCRMActivityTargetInput[] | null
Show properties
Array of CRMActivityTargetInput
object_idstringrequired
object_kindstringrequired
titlestring
Responses
200OK
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 POST "/v1/crm/notes" \
  -H "Content-Type: application/json" \
  -d '{
  "body": "string",
  "body_rich": {
    "json": "string",
    "plain_text": "string",
    "type": "string"
  },
  "targets": [
    {
      "object_id": "string",
      "object_kind": "string"
    }
  ],
  "title": "string"
}'
Response
{
  "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"
}