List Transactions
GET
/web/v1/slash/connections/{connectionBizId}/transactionsJWTRetrieves a paginated list of transactions for the specified Slash connection. Supports filtering by status and date range.
Authentication
Requires a valid JWT token. Portal access: system, tenant.
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
connectionBizId | String | Yes | path | Slash connection business ID. |
status | String | No | query | Filter by transaction status. |
from | String | No | query | Start date for date range filter (ISO 8601). |
to | String | No | query | End date for date range filter (ISO 8601). |
page | Integer | No | query | Page number. |
pageSize | Integer | No | query | Number of items per page. |
Success Response
Unauthorized401
{
"code": "4010",
"message": "Invalid or expired JWT token"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Invalid or expired JWT token |
| 404 | 4040 | Connection not found |
Notes
- Results are paginated. Use
pageandpageSizeto control pagination. - The
fromandtoparameters accept ISO 8601 date strings. - The response data structure is proxied from the Slash platform.