v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCreate card
Create a virtual or physical (plastic/metal) card.
Refer to the Cards management guide for more information about physical and virtual cards.
For more information about embossing, refer to Embossing flows.
This endpoint generates a Card created event. The card's PCI data is created asynchronously as is the Card created event. Any operation that tries to access a card before this event, such as update password or get PCI information, is going to return a 404, not found error.
Headers
Pismo customer ID
A unique identifier to ensure the operation remains idempotent, allowing for operation repetition without causing unintended effects or duplication. An idempotent operation is one that can be applied multiple times, yet the outcome remains the same. it ensures that network errors, retries, or failures can occur without introducing inconsistencies. 36 chars max.
Request body
Example request
{
"name": "Vacation card",
"type": "PLASTIC",
"printed_name": "Sarah Toga",
"cvv_rotation_interval_hours": 24,
"transaction_limit": "500.00",
"metadata": "{ \"key\": \"value\"}",
"embossing_group": "EM1-embosser",
"embossing_custom_field": "Tracking ID = 5859930",
"abu_enabled": true,
"template_id": "EAFA693A-57B2-4029-97F3-D20D6F06D79B",
"mode_type": "COMBO",
"generate_pvv": true,
"validity_period_hours": 240,
"status": "PENDING",
"brand": "VISA",
"expiration_date": "2803"
}Response
Card creation response when x-idempotency-key is passed and the card had already been created in a preivous call.
Example response
{
"id": 6743052,
"name": "Vacation card",
"status": "ACTIVE",
"type": "PLASTIC",
"transaction_limit": "500.00",
"metadata": "{ \"key\": \"value\"}",
"cvv_rotation_interval_hours": 24,
"embossing_custom_field": "Tracking ID = 5859930",
"abu_enabled": true,
"template_id": "EAFA693A-57B2-4029-97F3-D20D6F06D79B",
"mode_type": "COMBO",
"validity_period_hours": 240,
"valid_until": "2021-07-03T17:23:18Z"
}