Evaluation rollback request created

This event occurs asynchronously when the platform completes a rollback request of the flex control evaluation. The event only contains the ID of the original flex control evaluation request.
More information: Flexible transaction controls

Type: object
Domain: audit
Event: evaluation_rollback_requested
Version: 1

|
method required

Title: The HTTP Method of address register operation
Type: string
Example:
DELETE

uri required

Title: The URI of address register operation
Type: string
Example:
/v1/evaluation/:evaluationId

email required

Title: The email of operator that registered address
Type: string
Example:
[email protected]

roles required

Type: array

origin required

Title: The request origin of address register operation
Type: string
Example:
P2P
PAYMENTS

object required

Title: The Evaluation rollback request
Type: object

evaluation_id required

Title: The evaluationId is the CID used by POST /v1/evaluation.
Type: string
Example:
7ce8e003-5aaf-45c3-8c89-dbb9fa8c991c

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Evaluation rollback request created",
    "description": "This event occurs asynchronously when the platform completes a rollback request of the flex control evaluation. The event only contains the ID of the original flex control evaluation request.<br>More information: <a href='https://developers.pismo.io/pismo-docs/docs/flex-controls' target='_blank'>Flexible transaction controls</a>",
    "required": [
        "method",
        "uri",
        "email",
        "roles",
        "origin",
        "object"
    ],
    "properties": {
        "method": {
            "type": "string",
            "title": "The HTTP Method of address register operation",
            "examples": [
                "DELETE"
            ]
        },
        "uri": {
            "type": "string",
            "title": "The URI of address register operation",
            "examples": [
                "/v1/evaluation/:evaluationId"
            ]
        },
        "email": {
            "type": "string",
            "title": "The email of operator that registered address",
            "examples": [
                "[email protected]"
            ]
        },
        "roles": {
            "type": "array",
            "items": {
                "type": "string"
            },
            "title": "The roles of operator that registered address",
            "examples": [
                "test1",
                "test2"
            ]
        },
        "origin": {
            "type": "string",
            "title": "The request origin of address register operation",
            "examples": [
                "P2P",
                "PAYMENTS"
            ]
        },
        "object": {
            "type": "object",
            "title": "The Evaluation rollback request",
            "required": [
                "evaluation_id"
            ],
            "properties": {
                "evaluation_id": {
                    "examples": [
                        "7ce8e003-5aaf-45c3-8c89-dbb9fa8c991c"
                    ],
                    "title": "The evaluationId is the CID used by POST /v1/evaluation.",
                    "type": "string"
                }
            }
        }
    }
}