Skip to main content
GET
/
api
/
v1
/
contacts
/
{id}
Get contact
curl --request GET \
  --url https://nudgen.net/api/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "contact": {
    "id": "<string>",
    "email": "jsmith@example.com",
    "name": "<string>",
    "phone": "<string>",
    "description": "<string>",
    "tags": [
      "<string>"
    ],
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

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

Response

Contact

contact
object