@mbanq/core-sdk-js / commands / GetCards
Function: GetCards()
GetCards(
clientId):Command<{clientId:number; },object[]>
Defined in: src/commands/rest/card.ts:154
Get all cards for a client
Retrieves a list of all cards associated with a specific client ID. Returns card details including status, type, and card information.
Parameters
clientId
number
The unique identifier of the client
Returns
Command<{ clientId: number; }, object[]>
Command object that executes the API request and returns card list
Example
typescript
const command = GetCards(12345);
const cards = await client.request(command);