Sandbox

Simulate customer capabilities

Make the requested capabilities READY for a sandbox customer by simulating the underlying approvals, without running real onboarding. The customer must already be ACTIVE (see the customer status endpoint). Emits the same capability webhooks as production.

put/v1/sandbox/customers/{id}/capabilities

Path parameters

idstring required

Customer ID

Headers

X-API-Keystring

API key

Request body

capabilitiesstring[] required

Capabilities to make READY for this customer by simulating the underlying approvals.

Example request

{
  "capabilities": [
    "USD_BALANCE"
  ]
}

Response

Capabilities simulated successfully

idstring required

Customer ID

Example response

{
  "id": "cus_abc123",
  "capabilities": [
    {
      "capability": "USD_WIRE_PAYIN",
      "status": "READY"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.