Card Created

A new Card has been issued.

Example Use Case

Monitoring for card theft by tracking card re-issuances.

Request Specifications

Required API FieldDefinitionNotes
external_card_idUnique identifier for the Card being created.
external_entity_idUnique identifier of the primary Entity associated with the Card.Unlike Bank Accounts, the top-level Entity is required and does automatically attach to the Card, in addition to any Entities that are specified under entities[].
timestampTimestamp of the event.
entities[]Array of all Entities associated with the Card.For each entity, card_holder_type and external_entity_id are required.
accounts[]Array of Bank Accounts associated with the Card.For each account, external_account_id and account_type are required.

Example Request/Response

{
    "event_type": "card_created",
    "event_status": "successful",
    "event_lifecycle_id": "07e81a74-3fa9-4034-92d4-d59a0e92fdd2",
    "data": {
        "external_card_id": "07e81a74-3fa9-4034-92d4-d59a0e92fdd2",
        "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855",
        "timestamp": "2026-01-01T22:40:02.982Z",
        "card_name": "Platinum Debit",
        "product_name": "Checking Debit",
        "product_code": "CHK-001",
        "card_type": "debit",
        "form_factor": "physical",
        "issued_at": "2026-01-01T22:40:02.982Z",
        "expiry_month": "06",
        "expiry_year": "2029",
        "status": "active",
        "status_detail": "Card in good standing",
        "is_locked": false,
        "entities": [
            {
                "card_holder_type": "primary",
                "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855"
            }
        ],
        "accounts": [
            {
                "external_account_id": "8b75f5e2-b671-450c-9fb2-5aa05c286309",
                "account_type": "primary"
            }
        ]
    }
}
{
    "status_code": 201,
    "event_request_token": "EV-6duCPBpd1S4ho2J8HKse",
    "_links": {
        "self": {
            "href": "/v1/events/EV-6duCPBpd1S4ho2J8HKse"
        }
    },
    "event": {
        "event_type": "card_created",
        "event_status": "PROCESSED",
        "event_lifecycle_id": "07e81a74-3fa9-4034-92d4-d59a0e92fdd2",
        "data": {
            "external_card_id": "07e81a74-3fa9-4034-92d4-d59a0e92fdd2",
            "card_token": "CARD-wdshFFRC93rw6DeYjRVL",
            "timestamp": "2024-03-25T22:40:02.982Z",
            "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855",
            "card_name": "Platinum Debit",
            "card_type": "debit",
            "product_code": "CHK-001",
            "product_name": "Checking Debit",
            "form_factor": "physical",
            "issued_at": "2024-03-25T22:40:02.982Z",
            "expiry_month": 6,
            "expiry_year": 2029,
            "is_locked": false,
            "status": "active",
            "status_detail": "Card in good standing",
            "entities": [
                {
                    "card_holder_type": "primary",
                    "external_entity_id": "e3065d04-95aa-47a1-915c-84b575ff3855"
                }
            ],
            "accounts": [
                {
                    "external_account_id": "8b75f5e2-b671-450c-9fb2-5aa05c286309",
                    "account_type": "primary"
                }
            ]
        },
        "evaluations": [],
        "journey_applications": []
    }
}