Skip to main content
POST
/
v1
/
crm
/
agents
/
{agentId}
/
notes
Create a Note
curl --request POST \
  --url https://api.example.com/v1/crm/agents/{agentId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isPrivate": true,
  "comment": "<string>"
}
'
{
  "isPrivate": true,
  "comment": "<string>"
}

Authorizations

Authorization
string
header
required

Enter token in following format: Bearer

Path Parameters

agentId
string
required

Body

application/json
isPrivate
boolean
required
comment
string
required

Response

The created note.

isPrivate
boolean
required
comment
string
required