Issuing a Card
Issue cards and manage their lifecycle from activation to replacement
The Unified Card Issuance is designed to give your business complete flexibility over how capital is accessed and managed. A single, unified platform that allows you to issue and manage cards for any use case, whether it’s giving an employee a corporate expense card or providing a customer with a personal card.
Cards can only be issued to an Account that is in ACTIVE status.
How to Issue a Card
You can issue both Debit and Prepaid cards using a single Unified API endpoint.
Issuing a Virtual Card
-
To begin, you can Issue a Card using the
POST/v1/customer/id/{customer_id}/issuance/cardendpoint. This single endpoint handles the logic for both card types “DEBIT” where the card is linked directly to the customer's Passport account balance and “PREPAID” to create a pre-funded expense card (Business Only).Field Mandatory Description (with Possible Values) cardholder.type ✓ Specifies the type of cardholder. It can be AUTHORIZED_USER,BENEFICIAL_OWNER.cardholder.id ✓ Unique identifier of the cardholder within the system. (Numeric or String ID) type ✓ Defines the funding type of the card. Possible values: PREPAID,DEBIT.cardProgram.id ✓ Unique identifier of the configured Card Program under which the card is issued. (Numeric ID) issuanceType ✓ Determines how the card is issued. Possible values: DIGITAL,DIGITAL-FIRST,PHYSICALshippingDetail Conditional Required when issuing a Physical Debit card. Contains shipping information for card delivery. shippingDetail.address.id Conditional Internal system identifier of the shipping address. (Numeric ID) shippingDetail.expressDelivery Conditional Indicates if expedited shipping is requested. Possible values: true,false. -
Once a card is issued, you can fetch the specific record by calling Retrieve Card at
GET/v1/customer/id/{customer_id}/issuance/card/id/{card_id}endpoint whereidis the Unique card id of the issued card.
Issuing a Physical Card
If a user was originally issued a virtual-only card but later requires a plastic card for ATM access or in-person payments, you do not need to create a new account.
- You can order a Physical Card by calling
POST/v1/customer/id/{customer_id}/account/id/{account_id}/issuance/card/id/{card_id}/issuePhysicalCardendpoint. This endpoint initiates the manufacturing and shipping process to the card holder address. - For security, all physical cards are shipped in a "Frozen" or "Inactive" state to prevent fraud during transit. Once the cardholder receives the plastic card, you must explicitly Enable "Card Present" transactions by calling
POST/v1/customer/id/{customer_id}/account/id/{account_id}/issuance/card/id/{card_id}/enablePhysicalCard. This step confirms the chain of custody and activates the card for use at Point-of-Sale terminals.
When issuing a physical card, the required embossing details are configured as part of the card issuance process. To learn more refer to this section.
Once your Unified Card is issued successfully, you can then proceed with other Card actions.
Open Questions
- How do we mention “Auto-issuance” use case ? Shall it be included here ?
- Incase of Retrieve Digital card Image, where do i add this sections?
- Should card embossment have another page?
- Where should "Digital wallet - push provision" be ? Will also be required to add "Certification appendix" area
See Also
Updated 1 day ago