Quickstart Guide
This guide will help you make your first API call to the Issuing API in just a few minutes.Prerequisites
Before you begin, make sure you have:- An Access Key (obtained from your implementation manager)
- A tool to make HTTP requests (cURL, Postman, or your preferred HTTP client)
Authentication: This quickstart uses simplified examples. In production, you’ll need to sign requests with RSA-signed JWT tokens. For sandbox testing, you can use HTTP Basic Authentication. See Request Signing for complete authentication details.
Step 1: Get Your Access Key
Contact your implementation manager to obtain your Access Key (UUID). You’ll also need to register your RSA public key to receive the Access Key.Step 2: Make Your First Request
Let’s test API connectivity. In sandbox, you can use Basic Auth:YOUR_ACCESS_KEY or YOUR_SIGNED_JWT_TOKEN with your actual credentials. See Request Signing for JWT token generation.
Step 3: List Your Accounts
Retrieve your accounts:Step 4: Create a Card
To create a card, you first need a card account. Then create a card:Required Fields:
cardAccountId: The card account under which to issue the cardtype: Either"physical"or"virtual"productId: UUID of the card product (provided by your solution manager)embossedName: Name to appear on the card (max 22 characters, letters/spaces/hyphens only)

