Sign in

Create customer

documented

Create a customer for payments.

POST /quickbooks/v4/payments/customersCustomersno 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://sandbox.api.intuit.com/quickbooks/v4/payments/customers" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Request-Id: {{$request_id}}" \
  -d '{"name": "{{$name}}", "email": "{{$email}}", "phone": "{{$phone}}", "address": {"streetAddress": "{{$streetAddress}}", "city": "{{$city}}", "region": "{{$region}}", "postalCode": "{{$postalCode}}", "country": "{{$country}}"}}'"