Update customer
documentedUpdate an existing customer.
PUT /api/V2/Customer/{Id}Customerno 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.eposnowhq.com/api/V2/Customer/{{$id}}" \
-X PUT \
-H "Authorization: Basic {{EPOSNOWHQ_ENCODED_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"FirstName": "{{$first_name}}", "LastName": "{{$last_name}}", "Email": "{{$email}}", "PhoneNumber": "{{$phone}}", "Mobile": "{{$mobile}}", "Company": "{{$company}}", "TypeID": {{$type_id}}, "Addresses": [ { "AddressLine1": "{{$address1}}", "AddressLine2": "{{$address2}}", "City": "{{$city}}", "State": "{{$state}}", "Zip": "{{$zip}}", "Country": "{{$country}}", "IsPrimary": true } ], "Notes": "{{$notes}}" }'"}