Updates non-provisioned fields (user_value, metadata) on an existing contact. Changing the actual provisioned resource requires delete + create.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
The type of contact to update.
Updated user-side value (e.g., personal phone for forwarding).
Updated type-specific metadata (merged with existing).
curl --request PUT \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/contact' \
--header "Authorization: Bearer $UNIFY_KEY"
--header 'Content-Type: application/json' \
--data '{
"contact_type": "phone",
"user_value": "+15559876543"
}'