Skip to main content
POST
/
api
/
v1
/
leads
/
{leadId}
/
notes
Adicionar comentário
curl --request POST \
  --url https://api.g1.datacrazy.io/api/v1/leads/{leadId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "Lead possui interesse em produtos para beleza"
}
'
{
  "note": "Lead possui interesse em produtos para beleza"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

leadId
string
required

Body

application/json
note
string

Comentário que será atribuído ao lead

Example:

"Lead possui interesse em produtos para beleza"

Response

200 - application/json
note
string

Comentário que será atribuído ao lead

Example:

"Lead possui interesse em produtos para beleza"