Pix fraud marker status change failure

Pix fraud marker integrity status change failure. The following endpoints generate this event: Create fraud marker. For more information, see the Pix instant payments guide. Also see the Pix payments data events guide.

Type: object
Domain: pix-dict
Event: fraud_marker_status_change_failure
Version: 1

|
id required

Title: ID
Description: Fraud marker ID.
Type: string
Max length: 36
Example:
1fe71b28-a5eb-4d3d-8781-823205c76aa3

new_status

Title: New status
Description: The new status expected to be changed to.
Type: string
Must be one of the following:
REGISTERED
CANCELLED
Example:
CANCELLED

error_message

Title: Error message.
Description: Error message that occurred during processing in the integrity stream.
Type: string
Example:
Error on provider

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "title": "Pix fraud marker status change failure",
    "description": "Pix fraud marker integrity status change failure. The following endpoints generate this event:  <a href='https://developers.pismo.io/pismo-docs/reference/post-v2-pix-fraud-marker-cancel'>Create fraud marker</a>. For more information, see the <a href='https://developers.pismo.io/pismo-docs/docs/pix-instant-payments'>Pix instant payments</a> guide. Also see the <a href='https://developers.pismo.io/pismo-docs/docs/pix-payments-data-events'>Pix payments data events</a> guide.",
    "required": [
        "id"
    ],
    "properties": {
        "id": {
            "type": "string",
            "title": "ID",
            "description": "Fraud marker ID.",
            "maxLength": 36,
            "examples": [
                "1fe71b28-a5eb-4d3d-8781-823205c76aa3"
            ]
        },
        "new_status": {
            "type": "string",
            "title": "New status",
            "description": "The new status expected to be changed to.",
            "enum": [
                "REGISTERED",
                "CANCELLED"
            ],
            "examples": [
                "CANCELLED"
            ]
        },
        "error_message": {
            "type": "string",
            "title": "Error message.",
            "description": "Error message that occurred during processing in the integrity stream.",
            "examples": [
                "Error on provider"
            ]
        }
    }
}
{
    "id": "1fe71b28-a5eb-4d3d-8781-823205c76aa3",
    "new_status": "CANCELLED",
    "error_message": "Error on provider"
}