Skip to main content
POST
/
api
/
v1
/
contacts
/
add
Create contact
curl --request POST \
  --url https://nudgen.net/api/v1/contacts/add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "nathan@example.com",
  "name": "Nathan Nguyen"
}
'
{
  "success": true,
  "contact": {
    "id": "<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.

Body

application/json
email
string<email>
required
name
string
required
phone
string
description
string
tags
string[]

Response

Contact created

success
boolean
Example:

true

contact
object