v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCards on file
Create card on file
Create a card on file - an existing card that has been tokenized and stored in a digital wallet. The token is then used for payment transactions to avoid exposing sensitive data like the card's PAN and CVV.<br> The card can be a Pismo-issued card or an external card. The card is added to the customer's digital wallet.<br>
This endpoint generates a Card on file created event.
Note: This is a PCI endpoint, use the https://gw-pci.pismolabs.io environment.
post/cardsonfile/v2/cardsonfile/cards
Query parameters
skip_validationboolean
Skip acquirer and anti-fraud validation? Default is false.
Headers
Authorizationstring required
Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in an <b>Unauthorized</b> message.
Request body
Example request
{
"card_name": "My Card",
"card_profile": "0XFF00FF",
"cvv": "123",
"default_card": true,
"document_number": "41440022209",
"expiration_date": "1224",
"issuer_card": true,
"name": "Vacation card",
"pan": "5448280000000007",
"verified": true,
"metadata": "{any_key: any_value}"
}Response
Success
Example response
{
"card_stored_uuid": "uuid-a-1ffff"
}