Contacts
PATCH Update contact
Partially update a contact's fields.
Endpoint
PATCH https://api.strideops.ai/v1/contacts/{id}Only the fields you send are updated. Other fields stay untouched. To clear a field, send null explicitly.
Path parameters
| Param | Type | Notes |
|---|---|---|
id | uuid | Contact id. |
Request body
Any subset of the Create contact fields. tags replaces the full array - to add a tag without losing others, fetch first, then PATCH with the merged list, or use Upsert which has union semantics.
Response
Returns the updated contact in the same shape as Get contact.
Example
curl -X PATCH https://api.strideops.ai/v1/contacts/ctc_8f3e… \
-H "Authorization: Bearer $STRIDE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"tags": ["lead", "qualified", "demo-scheduled"]
}'