Get Account Balance
GET /api/v1/accounts/{accountIdOrNumber}/balance
Description
Retrieve the balance for a specific account.
Path Parameters
| Name | Type | Description |
|---|---|---|
accountIdOrNumber | string | The account ID or number (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
tenantId | string | The tenant ID (header) |
Example
GET /api/v1/accounts/{accountIdOrNumber}/balance
Content-Type: application/json
tenantId: string
Response Code: 200 - OK
Description
Balance retrieved successfully.
Example
{
"balance": 1000.00
}
Headers
| Content-Type | Value |
|---|---|
| tenantId | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/accounts/{accountIdOrNumber}/balance \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!