Skip to main content
PATCH
/
v1
/
people
/
{id}
Update a person
curl --request PATCH \
  --url https://thanos.notealy.com/v1/people/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "channel": "WHATSAPP",
  "phone": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "email": "<string>",
  "jobTitle": "<string>",
  "companyId": "<string>",
  "companyName": "<string>",
  "city": "<string>",
  "description": "<string>",
  "customFields": {},
  "tagIds": [
    "<string>"
  ]
}
'
{
  "statusCode": 400,
  "message": "Validation failed",
  "error": "Bad Request"
}

Documentation Index

Fetch the complete documentation index at: https://docs.notealy.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
name
string
channel
enum<string>
Available options:
WHATSAPP,
EMAIL,
INSTAGRAM,
FACEBOOK,
TIKTOK,
TELEGRAM,
PHONE,
WEB,
OTHER
phone
string
firstName
string
lastName
string
email
string
jobTitle
string
companyId
string
companyName
string
city
string
description
string
customFields
object
tagIds
string[]

Tag IDs to attach. Additive — does not remove existing tags.

Response

The updated person