Pending transactions sent

This event sends pending transactions so you can analyze them. The transactions in question are raw clearings that have not been processed for some reason, requiring review and analysis to ensure proper resolution.
More information: Authorization events guide.

Type: object
Additional properties: true
Domain: networktransactions
Event: pending-transactions
Version: 2

|
message required

Description: Contains the Clearing/Base II message in JSON format. This is different for every network.
Type: string

reason required

Description: Contains the reason the message was not processed.
Type: string
Example:
CANCELLATION
UNKNOWN
JULIAN_DATE

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Pending transactions sent",
    "description": "This event sends pending transactions so you can analyze them. The transactions in question are raw clearings that have not been processed for some reason, requiring review and analysis to ensure proper resolution. \n More information: <a href='https://developers.pismo.io/pismo-docs/docs/authorization-events' target='_blank'>Authorization events</a> guide.",
    "additionalProperties": true,
    "required": [
        "reason",
        "message"
    ],
    "properties": {
        "message": {
            "type": "string",
            "description": "Contains the Clearing/Base II message in JSON format. This is different for every network."
        },
        "reason": {
            "type": "string",
            "description": "Contains the reason the message was not processed.",
            "examples": [
                "CANCELLATION",
                "UNKNOWN",
                "JULIAN_DATE"
            ]
        }
    }
}