POST
/
v1
/
contacts
/
{contactID}
/
notes
Create a note for a contact
curl --request POST \
  --url https://api.wazapin.com/v1/contacts/{contactID}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>"
}
'
{
  "data": {
    "contact_id": "<string>",
    "content": "<string>",
    "created_at": "<string>",
    "created_by": "<string>",
    "id": "<string>",
    "organization_id": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Path Parameters

contactID
string
required

Contact ID

Body

application/json
content
string
required

Note content

Minimum string length: 1

Response

Created

data
object
required