Skip to main content

LeadNoteDTO

Lead note object.

idint64

Note ID (null when creating)

Example: 7001
isPinboolean

Whether the note is pinned.

Default value: false
Example: false
textstringrequired

Note text. Required, length 1–500.

Possible values: non-empty and <= 500 characters

Example: Client requested a callback
typeLeadNoteType

Lead note type enum.

  • SIMPLE — ordinary note
  • SMS — a sent SMS
  • PHONE — a phone call note

Possible values: [SIMPLE, SMS, PHONE]

Default value: SIMPLE
Example: SIMPLE
LeadNoteDTO
{
"id": 7001,
"isPin": false,
"text": "Client requested a callback",
"type": "SIMPLE"
}