> ## Documentation Index
> Fetch the complete documentation index at: https://developers.ingopayments.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Card Status In Review

> In Development — Card Issuance is not yet generally available. Fired when a card transitions to the inreview state.



## AsyncAPI

````yaml specs/asyncapi-banking.yaml CardStatusInreview
id: CardStatusInreview
title: Card Status In Review
description: >-
  In Development — Card Issuance is not yet generally available. Fired when a
  card transitions to the inreview state.
servers:
  - id: webhook
    protocol: https
    host: your-webhook-endpoint.example.com
    bindings: []
    variables: []
address: card.status.inreview
parameters: []
bindings: []
operations:
  - &ref_1
    id: receiveCardStatusInreview
    title: Receive card status inreview
    description: Card Status In Review
    type: receive
    messages:
      - &ref_2
        id: CardStatusInreviewMessage
        contentType: application/json
        payload:
          - name: Card Status In Review
            type: object
            properties:
              - name: event
                type: string
                required: true
              - name: data
                type: object
                required: true
                properties:
                  - name: event_id
                    type: string
                    description: >-
                      Unique identifier for this webhook event delivery. Use as
                      your deduplication key.
                    required: true
                  - name: event_type
                    type: string
                    description: The event type name, matching the top-level event field.
                    required: true
                  - name: event_description
                    type: string
                    description: Human-readable description of the event. Often empty.
                    required: true
                  - name: entity_id
                    type: string
                    description: Platform-assigned numeric entity identifier.
                    required: true
                  - name: entity_type
                    type: string
                    description: The type of entity associated with this event.
                    enumValues:
                      - user
                      - business
                    required: true
                  - name: account_id
                    type: string
                    description: Platform-assigned account identifier.
                    required: true
                  - name: status
                    type: string
                    description: Event-delivery status.
                    required: true
                  - name: reason_code
                    type: string
                    description: >-
                      Optional reason code for the status transition. Null when
                      no specific reason applies.
                    required: false
                  - name: card
                    type: object
                    description: >-
                      Card detail block present on card issuance and card status
                      events.
                    required: true
                    properties:
                      - name: card_id
                        type: string
                        description: Platform-assigned card identifier.
                        required: true
                      - name: status
                        type: string
                        description: Card lifecycle status.
                        enumValues:
                          - active
                          - inactive
                          - frozen
                          - pending
                          - inreview
                          - terminated
                          - reissue
                        required: true
                      - name: last_four
                        type: string
                        description: Last four digits of the card number.
                        required: true
                      - name: brand
                        type: string
                        description: Card network brand (e.g. mastercard, visa).
                        required: true
                      - name: type
                        type: string
                        description: Card form factor (e.g. physical, virtual).
                        required: true
              - name: created_at
                type: string
                description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
                required: true
              - name: updated_at
                type: string
                description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
                required: true
        headers: []
        jsonPayloadSchema:
          type: object
          required:
            - event
            - data
            - created_at
            - updated_at
          properties:
            event:
              type: string
              example: card.status.inreview
              x-parser-schema-id: <anonymous-schema-209>
            data:
              allOf:
                - type: object
                  required:
                    - event_id
                    - event_type
                    - event_description
                  description: >-
                    Base fields present in the data block of every Banking
                    Platform webhook event.
                  properties:
                    event_id:
                      type: string
                      pattern: ^inn_whe_[A-Za-z0-9]+$
                      description: >-
                        Unique identifier for this webhook event delivery. Use
                        as your deduplication key.
                      example: inn_whe_2tHPeibq8Gkm6kXU819g
                      x-parser-schema-id: <anonymous-schema-4>
                    event_type:
                      type: string
                      description: The event type name, matching the top-level event field.
                      x-parser-schema-id: <anonymous-schema-5>
                    event_description:
                      type: string
                      description: Human-readable description of the event. Often empty.
                      x-parser-schema-id: <anonymous-schema-6>
                  x-parser-schema-id: BankingEventDataBase
                - type: object
                  description: Data fields present on card.status.* events.
                  required:
                    - entity_id
                    - entity_type
                    - account_id
                    - status
                    - card
                  properties:
                    entity_id:
                      type: string
                      description: Platform-assigned numeric entity identifier.
                      example: '6830'
                      x-parser-schema-id: EntityId
                    entity_type:
                      type: string
                      description: The type of entity associated with this event.
                      enum:
                        - user
                        - business
                      x-parser-schema-id: EntityType
                    account_id:
                      type: string
                      description: Platform-assigned account identifier.
                      x-parser-schema-id: <anonymous-schema-196>
                    status:
                      type: string
                      description: Event-delivery status.
                      example: completed
                      x-parser-schema-id: <anonymous-schema-197>
                    reason_code:
                      type: string
                      nullable: true
                      description: >-
                        Optional reason code for the status transition. Null
                        when no specific reason applies.
                      x-parser-schema-id: <anonymous-schema-198>
                    card:
                      type: object
                      description: >-
                        Card detail block present on card issuance and card
                        status events.
                      required:
                        - card_id
                        - status
                        - last_four
                        - brand
                        - type
                      properties:
                        card_id:
                          type: string
                          description: Platform-assigned card identifier.
                          example: rcrd-acc960c0-3a14-413e-a248-74684e52a0f2
                          x-parser-schema-id: <anonymous-schema-183>
                        status:
                          type: string
                          description: Card lifecycle status.
                          enum:
                            - active
                            - inactive
                            - frozen
                            - pending
                            - inreview
                            - terminated
                            - reissue
                          x-parser-schema-id: CardStatusEnum
                        last_four:
                          type: string
                          description: Last four digits of the card number.
                          example: '8532'
                          x-parser-schema-id: <anonymous-schema-184>
                        brand:
                          type: string
                          description: Card network brand (e.g. mastercard, visa).
                          example: mastercard
                          x-parser-schema-id: <anonymous-schema-185>
                        type:
                          type: string
                          description: Card form factor (e.g. physical, virtual).
                          example: physical
                          x-parser-schema-id: <anonymous-schema-186>
                      x-parser-schema-id: CardBlock
                  x-parser-schema-id: CardStatusEventData
              x-parser-schema-id: <anonymous-schema-210>
            created_at: &ref_0
              type: string
              description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
              example: 02-02-2025 06:30 PM
              x-parser-schema-id: BankingTimestamp
            updated_at: *ref_0
          x-parser-schema-id: <anonymous-schema-208>
        title: Card Status In Review
        example: |-
          {
            "event": "card.status.inreview",
            "data": {
              "event_id": "inn_whe_3EXWNOXVLK57QCZ920L",
              "event_type": "card.status.inreview",
              "event_description": "",
              "entity_id": "3234",
              "entity_type": "user",
              "account_id": "1342",
              "status": "completed",
              "reason_code": "FRAUD_SUSPECTED",
              "card": {
                "card_id": "rcrd-acc960c0-3a14-413e-a248-74684e52a0f2",
                "status": "inreview",
                "last_four": "8532",
                "brand": "mastercard",
                "type": "physical"
              }
            },
            "created_at": "03-02-2025 12:00 PM",
            "updated_at": "03-02-2025 12:00 PM"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: CardStatusInreviewMessage
    bindings: []
    extensions:
      - id: x-parser-unique-object-id
        value: CardStatusInreview
sendOperations:
  - *ref_1
receiveOperations: []
sendMessages:
  - *ref_2
receiveMessages: []
extensions:
  - id: x-parser-unique-object-id
    value: CardStatusInreview
securitySchemes: []

````