Skip to main content
PUT
/
contacts
/
{contactId}
cURL
curl --request PUT \
  --url https://api.vooma.ai/v0/contacts/{contactId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contact": {
    "carrierId": "<string>",
    "customerId": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "name": "<string>"
  }
}
'
{
  "carrierId": "<string>",
  "customerId": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "name": "<string>",
  "id": "<string>"
}
Beta Feature: This functionality is currently in beta. You may experience changes or limited support as we continue to improve it.

Authorizations

Authorization
string
header
required

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

Path Parameters

contactId
string
required

Body

application/json
contact
object
required

Response

200 - application/json

Ok

carrierId
string
customerId
string
email
string
phone
string
name
string
id
string