Card reembossing notification received

Event that occurs when a reembossing request is made via API for reembossing a plastic card. This event is sent to customers who make a request via the Resend cards for embossing endpoint.

Refer to the Physical card embossing guide for more information.

Type: object
Domain: cards
Event: reembossing
Version: 1

|
card_id required

Title: Card ID
Description: Pismo card ID
Type: integer
Example:
8793297

program_id required

Title: Program ID
Description: Pismo program ID
Type: integer
Example:
8659

account_id

Title: Account ID
Description: Pismo account ID
Type: integer
Example:
8675309

customer_id

Title: Customer ID
Description: Pismo customer ID
Type: integer
Example:
102146146

card_status

Title: Card status
Description: Card status. Refer to Card lifecyle and statuses for more information.
Type: string
Must be one of the following:
CREATED
UNBOUND
NORMAL
REISSUED
BLOCKED
PENDING
WARNING
INOPERATIVE
LOST
ROBBED
CANCELED
FRAUD
DAMAGED
EXPIRED
DELETED
BROKEN
THEFT
DEFECT
Example:
CREATED

embosser

Title: Embosser
Description: Embosser details
Type: object

id

Title: Embosser ID
Description: Embosser ID
Type: string
Example:
4

name

Title: Embosser name
Description: Embosser name
Type: string
Example:
EM

validation_results

Title: Validation results
Description: Information about errors encountered in embossing validation
Type: object

Type

Title: Error Type
Description: Error Type
Type: string
Example:
account_address_zipcode_invalid

Error

Title: Error description
Description: Error description
Type: string
Example:
some-error

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Card reembossing notification received",
    "description": "Event that occurs when a reembossing request is made via API for reembossing a plastic card. This event is sent to customers who make a request via the <a href='https://developers.pismo.io/pismo-docs/reference/start-reembossing'>Resend cards for embossing</a> endpoint.<br><br>Refer to the <a href='https://developers.pismo.io/pismo-docs/docs/physical-card-embossing'>Physical card embossing</a> guide for more information.",
    "examples": [
        {
            "account_id": 102148544,
            "card_id": 8793297,
            "card_status": "CREATED",
            "customer_id": 102146146,
            "embosser": {
                "id": "4",
                "name": "EM"
            },
            "program_id": 8659,
            "validation_results": {
                "Type": "account_address_zipcode_invalid",
                "Error": "some-error"
            }
        }
    ],
    "required": [
        "card_id",
        "program_id"
    ],
    "properties": {
        "card_id": {
            "type": "integer",
            "title": "Card ID",
            "description": "Pismo card ID",
            "examples": [
                8793297
            ]
        },
        "program_id": {
            "type": "integer",
            "title": "Program ID",
            "description": "Pismo program ID",
            "examples": [
                8659
            ]
        },
        "account_id": {
            "type": "integer",
            "title": "Account ID",
            "description": "Pismo account ID",
            "examples": [
                8675309
            ]
        },
        "customer_id": {
            "type": "integer",
            "title": "Customer ID",
            "description": "Pismo customer ID",
            "examples": [
                102146146
            ]
        },
        "card_status": {
            "type": "string",
            "title": "Card status",
            "description": "Card status. Refer to <a href='https://developers.pismo.io/pismo-docs/docs:card-lifecycle-and-statuses'>Card lifecyle and statuses</a> for more information.",
            "examples": [
                "CREATED"
            ],
            "enum": [
                "CREATED",
                "UNBOUND",
                "NORMAL",
                "REISSUED",
                "BLOCKED",
                "PENDING",
                "WARNING",
                "INOPERATIVE",
                "LOST",
                "ROBBED",
                "CANCELED",
                "FRAUD",
                "DAMAGED",
                "EXPIRED",
                "DELETED",
                "BROKEN",
                "THEFT",
                "DEFECT"
            ]
        },
        "embosser": {
            "type": "object",
            "title": "Embosser",
            "description": "Embosser details",
            "properties": {
                "id": {
                    "type": "string",
                    "title": "Embosser ID",
                    "description": "Embosser ID",
                    "examples": [
                        "4"
                    ]
                },
                "name": {
                    "type": "string",
                    "title": "Embosser name",
                    "description": "Embosser name",
                    "examples": [
                        "EM"
                    ]
                }
            }
        },
        "validation_results": {
            "type": "object",
            "title": "Validation results",
            "description": "Information about errors encountered in embossing validation",
            "properties": {
                "Type": {
                    "examples": [
                        "account_address_zipcode_invalid"
                    ],
                    "title": "Error Type",
                    "description": "Error Type",
                    "type": "string"
                },
                "Error": {
                    "examples": [
                        "some-error"
                    ],
                    "title": "Error description",
                    "description": "Error description",
                    "type": "string"
                }
            }
        }
    }
}
{
    "account_id": 102148544,
    "card_id": 8793297,
    "card_status": "CREATED",
    "customer_id": 102146146,
    "embosser": {
        "id": "4",
        "name": "EM"
    },
    "program_id": 8659,
    "validation_results": {
        "Type": "account_address_zipcode_invalid",
        "Error": "some-error"
    }
}