@mbanq/core-sdk-js / commands / OrderPhysicalCard
Function: OrderPhysicalCard()
OrderPhysicalCard(
cardId):Command<{cardId:number; }, {id:number;resourceId:number; }>
Defined in: src/commands/rest/card.ts:558
Order a physical card
Requests the fulfillment/shipment of a physical card for an existing virtual card or newly created card. This initiates the card production and delivery process.
Parameters
cardId
number
The unique identifier of the card to order physically
Returns
Command<{ cardId: number; }, { id: number; resourceId: number; }>
Command object that executes the API request and returns order details
Example
typescript
const command = OrderPhysicalCard(67890);
const result = await client.request(command);