Confirmation Tokens
Retrieve Confirmation Token
Retrieves a token's display-safe preview — never the underlying payment credential. Public and rate-limited: the account_id query param must match the account the token was minted for.
get/confirmation_tokens/{id}
Query parameters
account_idstring required
The account (biz_) the token was minted for.
Response
confirmation token retrieved
Example response
{
"billing_details": {
"country": "AR",
"email": "marcus@shinetime.example",
"name": "Buyer Name",
"postal_code": "C1043"
},
"created_at": "2026-01-01T12:00:00.000Z",
"expires_at": "2026-01-01T12:00:00.000Z",
"id": "ctok_xxxxxxxxxxxxxx",
"object": "confirmation_token",
"payment_method_preview": {
"bank_debit": {
"brand": "visa",
"last4": "4242"
},
"card": {
"brand": "visa",
"last4": "4242"
},
"category": "saved",
"display_name": "Visa •••• 4242",
"id": "payt_xxxxxxxxxxxxxx",
"saved": {
"brand": "visa",
"last4": "4242"
},
"type": "card",
"wallet": {
"brand": "visa",
"last4": "4242"
}
},
"setup_future_usage": "off_session",
"status": "pending"
}