ABU return file error by card

Event that occurs during processing of the ABU return file. Specifies the card and error that occurred to it.

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

|
card_id required

Title: Card ID
Description: Pismo Card ID.
Type: integer
Example:
12345

result_file_id required

Title: Result File ID
Description: References the historical record of the file.
Type: string
Example:
70a12fc6-dbc1-47e1-808a-bc822b4ffcbc

error_code required

Title: Error Code
Description: Error code sent by Mastercard.
Type: string
Example:
101

error_message required

Title: Error Message
Description: Error description.
Type: string
Example:
Old Account Number is not numeric

reason_code required

Title: Reason Code
Description: Automatic updater reason code.
Type: string
Example:
N

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "ABU return file error by card",
    "description": "Event that occurs during processing of the ABU return file. Specifies the card and error that occurred to it.",
    "examples": [
        {
            "card_id": 12345,
            "result_file_id": "70a12fc6-dbc1-47e1-808a-bc822b4ffcbc",
            "error_code": "100",
            "error_message": "Old Account Number is not numeric",
            "reason_code": "C"
        }
    ],
    "required": [
        "card_id",
        "result_file_id",
        "error_code",
        "error_message",
        "reason_code"
    ],
    "properties": {
        "card_id": {
            "type": "integer",
            "title": "Card ID",
            "description": "Pismo Card ID.",
            "examples": [
                12345
            ]
        },
        "result_file_id": {
            "type": "string",
            "title": "Result File ID",
            "description": "References the historical record of the file.",
            "examples": [
                "70a12fc6-dbc1-47e1-808a-bc822b4ffcbc"
            ]
        },
        "error_code": {
            "type": "string",
            "title": "Error Code",
            "description": "Error code sent by Mastercard.",
            "examples": [
                "101"
            ]
        },
        "error_message": {
            "type": "string",
            "title": "Error Message",
            "description": "Error description.",
            "examples": [
                "Old Account Number is not numeric"
            ]
        },
        "reason_code": {
            "type": "string",
            "title": "Reason Code",
            "description": "Automatic updater reason code.",
            "examples": [
                "N"
            ]
        }
    },
    "definitions": {}
}
{
    "card_id": 12345,
    "result_file_id": "70a12fc6-dbc1-47e1-808a-bc822b4ffcbc",
    "error_code": "100",
    "error_message": "Old Account Number is not numeric",
    "reason_code": "C"
}