Skip to main content
PATCH
/
api
/
v1
/
contacts
/
{id}
Update contact
curl --request PATCH \
  --url https://nudgen.net/api/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "name": "<string>",
  "phone": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nudgen.net/llms.txt

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

Authorizations

Authorization
string
header
required

Personal Access Token created from Settings -> API Keys.

Path Parameters

id
string
required

Body

application/json
email
string<email>
name
string
phone
string
description
string
tags
string[]
status
enum<string>
Available options:
active,
unsubscribed,
bounced

Response

Contact updated