1. Cards
PIK
  • Start
    • Getting Started
  • Authentication
    • Authentication Token
      POST
  • Global Account
    • Contacts
      • Create Contact
      • List Contacts
      • Get Contact
      • Count Contacts
    • Virtual Accounts
      • Create Virtual Account
      • List Virtual Accounts
      • Get Virtual Account
    • Transactions
      • List Transactions
      • Get Transaction
    • Account Balance
      • List Account Balances
      • Get Balance by Currency
    • Payout
      • Create Payout
  • Payment Links
    • Payment Links
      • Create Payment Link
      • Update Payment Link
      • Get Payment Link Detail
      • Get Payment Link List
    • Transactions
      • Get Transaction List
  • Webhook
    • Global Account
      • Deposit Webhook
      • Payout Webhook
      • Virtual Account Webhook
    • Payment Links
      • Overview
      • Order Collect Out Webhook
      • Customer Payment Webhook
      • Customer Refund Webhook
      • Master Recharge Webhook
      • Web3 Direct Payment Webhook
      • Withdraw Out Webhook
    • Issuing
      • Card Activated
      • Card Failed
      • Transaction Completed
      • Transaction Declined
  • Issuing
    • Card Products
      • List Card Products
    • Cardholders
      • Create Cardholder
      • List Cardholders
      • Get Cardholder
    • Cards
      • Issue Card
        POST
      • List Cards
        GET
      • Get Card
        GET
      • Create Card Secure Session
        POST
    • Transactions
      • List Transactions
      • Get Transaction
  1. Cards

Issue Card

POST
/api/v1/issuing/card/create
Issue a virtual card for an existing cardholder. The cardholder must be in ACTIVE status.
This call is accepted asynchronously. A PENDING status means the request was accepted; the final outcome is delivered as a card.activated or card.failed webhook. Do not tell your end user the card is ready until the webhook arrives.
cardLimit is the cumulative spending ceiling for the card — the total the card may ever spend. It is not a prepaid balance and not a per-transaction cap. Because this release performs no pre-authorization, this value is the only real-time control over the card's exposure.

Request

Body Params application/json

Examples

Responses

🟢200
application/json
Card issuance accepted
Bodyapplication/json

🟠400BadRequest
🟠401Unauthorized
🟠404NotFound
🟠409Conflict
🟠422VendorRejected
🔴500InternalError
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/issuing/card/create' \
--header 'Content-Type: application/json' \
--data '{
    "cardholderNo": "CH260811A1B2C3",
    "cardProductCode": "PIK_BUSINESS_VISA",
    "cardLimit": "500.00",
    "currency": "USD",
    "label": "Ads spend - Q3",
    "externalId": "card-req-4471"
}'
Response Response Example
200 - Example 1
{
    "code": 200,
    "message": "success",
    "data": {
        "cardNo": "string",
        "cardholderNo": "string",
        "maskedCardNumber": "string",
        "expireMonthYear": "string",
        "status": "string",
        "cardLimit": "string",
        "availableLimit": "string",
        "currency": "string",
        "label": "string",
        "externalId": "string",
        "createTimeUtc": "2019-08-24T14:15:22.123Z"
    }
}
Modified at 2026-08-11 10:11:22
Previous
Get Cardholder
Next
List Cards
Built with