Skip to main content
POST
/
v1
/
admin
/
identity
/
named-contacts
Create named contact
curl --request POST \
  --url https://{operatorDomain}/v1/admin/identity/named-contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "ncnt_01h...",
  "role": "billing",
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>"
}
'
{
  "id": "ncnt_01h...",
  "role": "billing",
  "name": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>"
}

Authorizations

Authorization
string
header
required

Staff session or API token issued by your Voyant app.

Body

application/json
id
string
Example:

"ncnt_01h..."

role
string
Example:

"billing"

name
string
email
string<email> | null
phone
string | null

Response

201 - application/json

Created named contact

id
string
Example:

"ncnt_01h..."

role
string
Example:

"billing"

name
string
email
string<email> | null
phone
string | null