Sign in

Create charge

documented

Create a new payment charge.

POST /quickbooks/v4/payments/chargesChargesno 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-quickbooks.api.intuit.com/quickbooks/v4/payments/charges" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"token": "{{$token}}", "currency": "{{$currency}}", "amount": "{{$amount}}", "context": {"mobile": "{{$mobile}}", "isEcommerce": "{{$isEcommerce}}"}, "capture": {{$capture}}, "description": "{{$description}}"}'
Create charge · QuickBooks · OpenIntegrations