v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBCard Lifecycle
Create Card
Creates a card and issues it to a cardholder.
Two calling modes are supported:
- Traditional mode — pass cardholder_id to issue a card to an existing cardholder. Optionally pass cardholder_required_fields to supplement missing cardholder data required by the card product.
- One-step mode — omit cardholder_id and pass a complete cardholder_required_fields block. The system creates the cardholder and the card in a single request. See One-Step Card Issuance for the full integration flow.
post/v1/issuing/cards
Headers
x-on-behalf-ofstring
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
x-idempotency-keystring uuid
A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.
Request body
Example request
{
"card_limit": 2100.02,
"card_currency": "USD",
"name_on_card": "MARSHALL HU",
"cardholder_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
"card_product_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
"card_art_id": "01KD52BKQWDMFF63R1NNQN7A79",
"spending_controls": [
{
"amount": "100.03",
"interval": "PER_TRANSACTION"
}
],
"risk_controls": {
"enable_3ds": "Y",
"allow_3ds_transactions": "Y",
"blocked_mcc": [
"5999",
"6011"
]
},
"metadata": {
"key1": "value1",
"key2": "value2"
},
"usage_type": "NORMAL",
"auto_cancel_trigger": "ON_AUTH",
"expiry_at": "2026-03-19T18:46:43+08:00",
"cardholder_required_fields": {
"email": "demo@example.com",
"first_name": "Emily",
"last_name": "Toy",
"country_code": "SG",
"phone_number": "86683306",
"date_of_birth": "1990-01-01",
"gender": "MALE",
"nationality": "SG",
"residential_address": {
"country": "SG",
"state": "Singapore",
"city": "Singapore",
"district": "Buona Vista",
"line1": "9 N Buona Vista Dr",
"line2": "THE METROPOLIS",
"line_en": "9 N Buona Vista Dr, THE METROPOLIS",
"postal_code": "138666"
},
"identity": {
"type": "PASSPORT",
"number": "E12345678"
},
"kyc_verification": {
"method": "THIRD_PARTY",
"kyc_proof": {
"provider": "SUMSUB",
"reference_id": "sumsub_ref_1234567890",
"documents": [
{
"file_id": "b3d9d2d5-4c12-4946-a09d-953e82sed2b0",
"report_type": "IDV"
}
]
}
}
}
}Response
Card creation successfully.
Example response
{
"card_id": "c0cef051-29c5-4796-b86a-cd5b684bfad7",
"card_order_id": "c0cef051-29c5-4796-b86a-cd5ee34bfad7",
"create_time": "2024-03-01T00:00:00+08:00",
"card_status": "ACTIVE",
"risk_controls": {
"enable_3ds": "Y",
"allow_3ds_transactions": "Y",
"blocked_mcc": [
"5999",
"6011"
]
},
"cardholder_id": "7c4ff2cd-1bf6-4aaa-bf16-266771425011",
"cardholder_created": true,
"verification_status": "UNDER_REVIEW",
"kyc_method": "SUMSUB_REDIRECT",
"idv_verification_url": "https://in.sumsub.com/websdk/p/sbx_4dwsbDuDbpJsMgou",
"idv_url_expires_at": "2026-04-25T17:26:50+08:00"
}