Interest account cancellation failure

This event occurs when an attempt to cancel an account fails with product interest management.

Type: object
Domain: interest-management
Event: interest_account_cancellation_failure
Version: 1

|
account_cancellation_id required

Title: Account cancellation ID
Description: External identifier for account cancellation operation.
Type: string
Example:
6104253a-qt53-41m0-a630-2z1h2761e3f8

program_id required

Title: Program ID
Description: Unique ID used to identify the program in the Pismo platform APIs.
Type: string
Example:
1234

account_id required

Title: Account ID
Description: Unique ID used to retrieve account details in the Pismo platform APIs.
Type: string
Example:
123

document_number

Title: Customer document number
Description: Number of asset quota owner's legal document
Type: string
Example:
00000000012

message required

Title: Cancellation date
Description: Date when account was cancelled by client
Type: string
Format: date
Example:
2025-01-01

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Interest account cancellation failure",
    "description": "This event occurs when an attempt to cancel an account fails with product interest management.",
    "required": [
        "account_cancellation_id",
        "program_id",
        "account_id",
        "message"
    ],
    "properties": {
        "account_cancellation_id": {
            "type": "string",
            "title": "Account cancellation ID",
            "description": "External identifier for account cancellation operation.",
            "examples": [
                "6104253a-qt53-41m0-a630-2z1h2761e3f8"
            ]
        },
        "program_id": {
            "type": "string",
            "title": "Program ID",
            "description": "Unique ID used to identify the program in the Pismo platform APIs.",
            "examples": [
                "1234"
            ]
        },
        "account_id": {
            "type": "string",
            "title": "Account ID",
            "description": "Unique ID used to retrieve account details in the Pismo platform APIs.",
            "examples": [
                "123"
            ]
        },
        "document_number": {
            "type": "string",
            "title": "Customer document number",
            "description": "Number of asset quota owner's legal document",
            "examples": [
                "00000000012"
            ]
        },
        "message": {
            "type": "string",
            "title": "Cancellation date",
            "description": "Date when account was cancelled by client",
            "format": "date",
            "examples": [
                "2025-01-01"
            ]
        }
    }
}
{
    "account_cancellation_id": "6104253a-qt53-41m0-a630-2z1h2761e3f8",
    "program_id": "1234",
    "account_id": "123",
    "document_number": "00000000012",
    "message": "2025-01-01"
}