Bulk payment processing status changed

Type: object
Domain: corporate
Event: bulk_status_changed
Version: 1

|
bulk_id required

Title: Unique identifier for bulk processing
Type: string
Min length: 1
Max length: 43
Example:
UK1-eb75c472-a213-41a7-a96e-ac0156b832f0

status required

Title: Bulk processing status
Description:
It only accepts the following values:
CREATED: When the bulk payment has started processing.
FINISHED:When the bulk payment has finished processing.
FAILED: When an error occurred.
WAITING_SIGNATURE: Waiting for Pismo's digital signature to validate the output file's authenticity.
Type: string
Must be one of the following:
CREATED
FINISHED
FAILED
WAITING_SIGNATURE
Example:
FINISHED

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "title": "Bulk payment processing status changed",
    "required": [
        "bulk_id",
        "status"
    ],
    "properties": {
        "bulk_id": {
            "title": "Unique identifier for bulk processing",
            "type": "string",
            "minLength": 1,
            "maxLength": 43,
            "examples": [
                "UK1-eb75c472-a213-41a7-a96e-ac0156b832f0"
            ]
        },
        "status": {
            "title": "Bulk processing status",
            "description": "\n\nIt only accepts the following values:\n\n<span style='font-weight:bold'>CREATED:</span> When the bulk payment has started processing.\n\n<span style='font-weight:bold'>FINISHED:</span>When the bulk payment has finished processing.\n\n<span style='font-weight:bold'>FAILED:</span> When an error occurred.\n\n<span style='font-weight:bold'>WAITING_SIGNATURE:</span> Waiting for Pismo's digital signature to validate the output file's authenticity.\n\n",
            "type": "string",
            "enum": [
                "CREATED",
                "FINISHED",
                "FAILED",
                "WAITING_SIGNATURE"
            ],
            "examples": [
                "FINISHED"
            ]
        }
    }
}
{
    "bulk_id": "UK1-eb75c472-a213-41a7-a96e-ac0156b832f0",
    "status": "FINISHED"
}