POST
/
v4
/
contacts
/
{id}
/
notes
Add a note to a contact
curl --request POST \
  --url https://api.reply.io/v4/contacts/{id}/notes \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "notes": "<string>"
}
'
{
  "title": "Bad Request",
  "status": 400,
  "detail": "Parameter 'top' must be between 1 and 1000",
  "errorCode": 10
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Contact ID

Body

application/json
notes
string
required

Note content

Response

Note added successfully