CardIssued

Triggered when a new card is successfully issued.

🔐

PAN, CVV and Payload Encryption (PCI DSS only)

By default, pan and cvv are not included in the payload and the body is not encrypted. Both are only available for integrations certified as PCI DSS compliant and explicitly enabled by Altery. In that case, the webhook body is encrypted using your public key registered with Altery.

To request PAN/CVV delivery, contact your account manager with proof of your PCI DSS compliance certification.


Payload Fields

FieldTypeDescription
eventstringAlways CardIssued
card.cardIdstring (UUID)Unique card identifier
card.idempotencyKeystring (UUID)Idempotency key provided during card issuance
card.statusstringCard status. Possible values: Frozen, Issuing, Deleting, Ready, Failed
card.namestringCardholder name printed on the card
card.last4stringLast 4 digits of the card number
card.addressstringBilling address associated with the card
card.isActivebooleanWhether the card is currently active
card.clientNotestring | nullOptional note set during card issuance
card.currencystringCard currency (ISO 4217, e.g. GBP)
card.dateEnteredUtcstring (ISO 8601)Card creation timestamp in UTC
card.purseIdintegerID of the purse (balance) linked to this card
panstringFull card number. PCI DSS compliant integrations only
cvvstringCard security code. PCI DSS compliant integrations only

Sample Payload

The sample below shows the payload for a PCI DSS compliant integration. For standard integrations, pan and cvv are omitted and the body is not encrypted.

{
  "event": "CardIssued",
  "card": {
    "cardId": "8f9c080b-b6a7-4208-aa42-8666e1482f93",
    "idempotencyKey": "f3f68ce3-c1eb-4e19-8b22-1ebaef3381f9",
    "status": "Ready",
    "name": "John Smith",
    "last4": "2575",
    "address": "123 Example Street, London",
    "isActive": true,
    "clientNote": null,
    "currency": "GBP",
    "dateEnteredUtc": "2025-09-29T07:55:09.119Z",
    "purseId": 4357502
  },
  "pan": "4308135113832575",
  "cvv": "507"
}

Webhook Security

This webhook is signed. Every request includes X-Signature and X-Key-Id headers for authenticity verification. See Webhook Security for verification instructions.