@mbanq/core-sdk-js / commands / GetAcquiredCards
Function: GetAcquiredCards()
GetAcquiredCards(
clientId):Command<{clientId:number; },object[]>
Defined in: src/commands/rest/acquiredCard.ts:34
Get all acquired cards for a client
Retrieves a list of all acquired/external cards associated with a specific client ID. Acquired cards are cards that were obtained from external sources or integrated systems. Returns comprehensive card details including status, type, network, and configuration.
Parameters
clientId
number
The unique identifier of the client
Returns
Command<{ clientId: number; }, object[]>
Command object that executes the API request and returns list of acquired cards
Example
typescript
const command = GetAcquiredCards(12345);
const acquiredCards = await client.request(command);