Get Account Balances
GET
/web/v1/slash/connections/{connectionBizId}/accounts/{accountId}/balances JWTRetrieves the balance details for a specific Slash account, including available and posted balances.
Required Headers
| Header | Example Value | Description |
|---|---|---|
| Content-Type | application/json | Request content type |
| Accept | application/json | Expected response type |
| X-Client-Hash | Client device fingerprint | |
| Accept-Language | en, zh, zh-Hant, ja, vi | Response language (default: en) |
| Authorization | Bearer | JWT access token |
| X-Workspace-Id | Target workspace ID |
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
connectionBizId | String | Optional | path | Slash connection business ID.", constraints: "Path parameter |
accountId | String | Optional | path | The account ID.", constraints: "Path parameter |
Success Response
Not Found 404
{
"code": "4040",
"message": "Account not found"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Invalid or expired JWT token |
| 404 | 4040 | Account or connection not found |
Notes
- Balance amounts are in cents (e.g.,
1500000= $15,000.00). - Response fields use snake_case as returned by the Slash platform (
available_balance,posted_balance,amount_cents,next_cursor).