Create contact
documentedCreates a new contact as an individual.
POST api/Individual/CreateContactIndividualno implementation yet0 runsNo 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/CreateContact" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Api-Key: {{CAYZU_API_KEY}}" \
-d '{"notify_by_email": true, "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": [ {"Name": "{{$customFieldName1}}", "Type": "{{$customFieldType1}}", "Value": "{{$customFieldValue1}}"}, {"Name": "{{$customFieldName2}}", "Type": "{{$customFieldType2}}", "Value": "{{$customFieldValue2}}"} ] }'