List User Cards
GET/openapi/v1/cards/list| Item | Value |
|---|---|
| HTTP method | GET |
| Request path | /openapi/v1/cards/list |
| Request type | query |
Users can be identified in either of the following ways. Provide exactly one of email and memberId:
http
GET /openapi/v1/cards/list?email=merchant@example.com
GET /openapi/v1/cards/list?memberId=member_001Both methods return the cards associated with the user. The response memberId comes from each card record.
Request parameters:
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
email | string | Conditional | None | User email address; provide either this or memberId, up to 128 characters. |
memberId | string | Conditional | None | Platform member ID; provide either this or email, up to 64 characters. |
status | string | No | None | Filter by raw card status from the external provider; additional values may be introduced. Currently known values are active, locked, lost, inactive. |
page | integer | No | 1 | Page number. |
pageSize | integer | No | 20 | Number of items per page. |
Response data: paginated structure; items[] fields are the same as in Get Card Details.
