POST/api/v2/banking/accounts/fund-test

Fund an Equals Money account with a sandbox test credit.

Staging only. This endpoint uses the Equals Money sandbox budget-credit simulator and will not work in production. Use AccountId from GET /api/v2/banking/accounts. Amount defaults to 100.00 when omitted.

Authentication

Send your API key in the x-api-key header on every request.

Parameters

Request parameters
FieldTypeRequiredDescription
userId (query)unknownNo

Request body

application/json

Request body fields
FieldTypeRequiredDescription
AccountIdstringYesEquals account or budget ID to fund. Use AccountId from GET /api/v2/banking/accounts.
BalanceIdstringNoOptional provider balance ID returned with the account.
CurrencystringNoCredit currency. Defaults to the selected account currency when omitted.
AmountunknownNoCredit amount. Defaults to 100.00 when omitted.

Responses

200 — OK

Response 200 fields
FieldTypeRequiredDescription
SuccessbooleanNo
MessagestringNo
AccountIdstringNo
BudgetIdstringNo
CurrencystringNo
AmountstringNo

400 — Bad Request

Response 400 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

401 — Unauthorized

Response 401 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

404 — Not Found

Response 404 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

500 — Internal Server Error

Response 500 fields
FieldTypeRequiredDescription
MessagestringNo
CodestringNo
StatusunknownNo
ValidationErrorsobjectNo
DetailsstringNo

Example request

curl -X POST "https://{base_url}/api/v2/banking/accounts/fund-test" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"AccountId":"…"}'

This page is generated from the live OpenAPI specification and always matches the current API.