Sign in

Update contact (alternate)

documented

Updates an existing contact.

POST api/Individual?customerId={customerId}&contactId={contactId}Individualno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.cayzu.com/api/Individual?customerId={{customerId}}&contactId={{contactId}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"address1": "{{$address1}}", "alternate_phone_number": "{{$alternate_phone_number}}", "city": "{{$city}}", "country": "{{$country}}", "description": "{{$description}}", "email_address": "{{$email_address}}", "full_name": "{{$full_name}}", "location": "{{$location}}", "phone_number": "{{$phone_number}}", "postal_code": "{{$postal_code}}", "title": "{{$title}}", "brand_id": {{$brand_id}}, "can_see_all_company_tickets": {{$can_see_all_company_tickets}}, "custom_fields": {{$custom_fields}}}'