invalid_request_error409What happened
You attempted to create a customer with anexternal_id that already exists in your account. The external_id must be unique per account.
How to fix
Either use a differentexternal_id, or retrieve the existing customer with GET /v1/customers and use its id directly.
Common causes
Duplicate provisioning
Duplicate provisioning
Your system called
POST /v1/customers twice with the same external_id. Check for idempotency issues in your provisioning flow and handle the 409 by looking up the existing customer instead.