# Card production status change

Triggered every time a card production status is updated. This webhook is solely used for physical cards with `KIOSK_COLLECTION` delivery method.
For more details, see the [Card kiosk collection guide](/guides/product/issue-cards/card-kiosk-collection).
* Event type: `cards#card-production-status-change`
* Profile level subscriptions: Not Supported
* Application level subscriptions: Supported

Events may not be delivered in the order they occurred. Use `data.occurred_at` to reconcile the order.
See the [Event ordering guide](/guides/developer/webhooks/event-ordering) for details.
See the [Webhooks guide](/guides/developer/webhooks) for setup instructions, signature verification, and best practices.

Endpoint: POST cards#card-production-status-change

## Header parameters:

  - `X-Signature-SHA256` (string)
    RSA-SHA256 signature of the request body, Base64 encoded. Verify this against the [Wise public key](/guides/developer/webhooks/event-handling#requests) to ensure the request is authentic and has not been tampered with.

  - `X-Delivery-Id` (string)
    Unique identifier for this webhook delivery attempt.

  - `X-Test-Notification` (boolean)
    Present with the value `true` if this is a test notification sent to verify your callback URL during subscription setup.

## Request fields (application/json):

  - `schema_version` (string)
    Version of the event schema. Determined by the `schema_version` on your [webhook subscription](/api-reference/legacy/webhook).
    Enum: "4.0.0"

  - `subscription_id` (string)
    ID of the webhook subscription that triggered this event.
    Example: 01234567-89ab-cdef-0123-456789abcdef

  - `event_type` (string)
    Event type identifier
    Example: cards#card-production-status-change

  - `sent_at` (string)
    Timestamp when the event was sent.
    Example: 2024-01-01T12:34:56.123Z

  - `data` (object)

  - `data.resource` (object)

  - `data.resource.profile_id` (integer)
    ID of the profile that owns the card.
    Example: 123456

  - `data.resource.type` (string)
    Webhook notification of type 'card'.
    Example: card

  - `data.resource.client_id` (string)
    API `client_id`
    Example: your-bank

  - `data.resource.card_token` (string | null)
    Unique identifier of the card.
    Example: 35050a4a-9521-426e-8109-1396e3687a3e

  - `data.status` (string)
    Current production status. See possible values in the [production status flow diagram](/api-reference/legacy/card-kiosk-collection#production-status-flow).
    Example: PRODUCED

  - `data.kiosk_id` (string | null)
    Identifier that specifies which kiosk machine is producing the card.
    Example: WIS00001

  - `data.occurred_at` (string)
    Time when the card production request was sent to the kiosk machine.
    Example: 2024-01-01T12:24:56.789Z

  - `data.error_code` (string | null)
    Code returned when card production is not successful. See possible values in [production errors](/api-reference/legacy/card-kiosk-collection/cardkioskcollectionproduce).
    Example: null

  - `data.description` (string)
    Detailed description of the error code.
    Example: Card produced

## Response 200 fields (application/json):

  - `status` (string)
    Example: ok

