Other BaaS operations
Read onlyBanking API contexts (assignments)
Read onlybaas_list_assignments
Lists the tenant/account contexts (assignments) available for the user's banking API credentials. Use it when another tool asks for assignmentId.
Parameters
No parameters.
Returns
{ assignments[] }
assignments = available contexts with assignment_id, tenant_code, owner_type, country_code and status.
Banking API diagnostics
Read onlybaas_diagnostics
Checks the user's banking API credentials, the login, the token exchange and access to accounts. Use it when a query fails.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
assignmentId | string | — | Banking API context (assignment); only needed when there are several |
Returns
{ checks[], failed }
checks = one row per check (credentials, login + assignments, accounts) with ok and detail; failed = how many failed. The credential email comes back masked.
List banking API accounts
Read onlybaas_list_accounts
Lists the accessible banking API accounts, without balances: identifier type, value and currency.
API operation: GET /api/public/v1/accounts — see the operation page
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
accountType | string | — | Filter by scheme (IBAN) |
accountValue | string | — | Filter by identifier |
limit | integer | — | Page size, between 1 and 100 |
cursor | string | — | Cursor from the previous page |
assignmentId | string | — | Banking API context (assignment); only needed when there are several |
Returns
{ result }
result = the banking API response as returned.
Balance of one account
Read onlybaas_get_balance
Gets the current balance of a banking API account identified by IBAN.
API operation: GET /api/public/v1/accounts/balance — see the operation page
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
accountType | string (IBAN) | — | Identifier scheme (IBAN) |
accountValue | string | yes | Account identifier (IBAN) |
assignmentId | string | — | Banking API context (assignment); only needed when there are several |
Returns
{ result }
result = the banking API response as returned.
Statement request status
Read onlybaas_get_statement_status
Reads the status of an account statement request. When it is DONE it includes the signed download link and its expiry.
API operation: GET /api/public/v1/accounts/statements/{request_id} — see the operation page
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
requestId | string | yes | request_id returned when the statement was requested |
assignmentId | string | — | Banking API context (assignment); only needed when there are several |
Returns
{ result }
result = the banking API response as returned.
Last verified: 2026-09-03 · Owner: equipo-integraciones