Skip to main content
POST
/
v1
/
contacts
/
{contactId}
/
channels
/
{channelId}
/
primary
Set channel as primary
curl --request POST \
  --url https://api.zavu.dev/v1/contacts/{contactId}/channels/{channelId}/primary \
  --header 'Authorization: Bearer <token>'
{
  "channel": {
    "id": "<string>",
    "channel": "sms",
    "identifier": "+14155551234",
    "isPrimary": true,
    "verified": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "countryCode": "US",
    "label": "work",
    "metrics": {
      "successCount": 123,
      "failureCount": 123,
      "totalAttempts": 123,
      "avgDeliveryTimeMs": 123,
      "lastSuccessAt": "2023-11-07T05:31:56Z"
    },
    "lastInboundAt": "2023-11-07T05:31:56Z",
    "metadata": {},
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

contactId
string
required
channelId
string
required

Channel ID.

Response

Channel set as primary.

channel
object
required

A communication channel for a contact.