Update contact
documentedUpdates an existing contact by ID.
PUT /contacts/{id}Contactno 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://{{$subdomain}}.repairshopr.com/api/v1/contacts/{{$contact_id}}" \
-X PUT \
-H "Authorization: Bearer {{REPAIRSHOPR_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "address1": "{{$address1}}", "address2": "{{$address2}}", "city": "{{$city}}", "state": "{{$state}}", "zip": "{{$zip}}", "email": "{{$email}}", "phone": "{{$phone}}", "title": "{{$title}}", "mobile": "{{$mobile}}", "notes": "{{$notes}}", "customer_id": {{$customer_id}} }'