iframe_url may be returned for PCI-compliant display of card details within a secure iframe.| Field | Type | Description | Notes |
|---|---|---|---|
id | string (uuid) | - | - |
card_number | string | Full PAN (16-digit card number). Example: 4111111111114242 | - |
cvv | string | Card verification value. Example: 123 | - |
expiry_date | string | Expiry date in MM/YY format. Example: 12/27 | - |
cardholder_name | string | - Example: JANE DOE | - |
iframe_url | string | URL for PCI-compliant iframe display of card details. | nullable |
curl --location -g --request GET '{{baseUrl}}/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/sensitive' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'{
"data": {
"id": "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11",
"card_number": "4111111111114242",
"cvv": "123",
"expiry_date": "12/27",
"cardholder_name": "JANE DOE",
"iframe_url": "https://secure.arthapay.com/card-display/token123"
},
"request_id": "req_sens001",
"timestamp": "2024-01-15T10:30:00Z"
}