List Cards
GET
/web/v1/slash/connections/{connectionBizId}/cardsJWTRetrieves a paginated list of cards under the specified Slash connection. Supports filtering by account, status, type, and card group.
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. |
accountId | String | No | query | Filter by account ID. |
status | String | No | query | Filter by card status. |
type | String | No | query | Filter by card type. |
cardGroupId | String | No | query | Filter by card group ID. |
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 response data structure is proxied from the Slash platform and may vary based on the provider's API.