cURL
curl --request PATCH \ --url https://api.zavu.dev/v1/contacts/{contactId}/channels/{channelId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "label": "<string>", "verified": true, "metadata": {} } '
{ "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" } }
Update a contact’s channel properties.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Channel ID.
Request body to update a channel.
Optional label for the channel. Set to null to clear.
50
Whether the channel is verified.
Show child attributes
Channel updated.
A communication channel for a contact.