Sign in

Partial update client

documented

Partially update a client's information.

PATCH /clients/{id}.jsonClientsno 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://bidsketch.com/api/v1/clients/{{$id}}.json" \
  -X PATCH \
  -H "Authorization: Token token=\"{{BIDSKETCH_API_KEY}}\"" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"client": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "organization": "{{$organization}}", "phone": "{{$phone}}", "address": {"line1": "{{$address_line1}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}"}}}'
Partial update client · Bidsketch · OpenIntegrations