Account parameter changed

This event occurs when a parameter of the account changes.
Generated by: Update account parameter

Type: object
Domain: account
Event: account_parameter_change
Version: 1

|
account_id required

Title: Account ID
Description: Pismo account ID.
Type: integer
Example:
24146066

parameter_id required

Title: Parameter ID
Description: Program parameter ID.
Type: integer
Example:
42

value

Title: New parameter value
Description: The value received in this request to update the parameter.
Type: number
Example:
1.84

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Account parameter changed",
    "description": "This event occurs when a parameter of the account changes. \n Generated by: <a href='https://developers.pismo.io/pismo-docs/reference/account-parameters-update' target='_blank'>Update account parameter</a>",
    "required": [
        "account_id",
        "parameter_id"
    ],
    "properties": {
        "account_id": {
            "type": "integer",
            "title": "Account ID",
            "description": "Pismo account ID.",
            "examples": [
                24146066
            ]
        },
        "parameter_id": {
            "type": "integer",
            "title": "Parameter ID",
            "description": "Program parameter ID.",
            "examples": [
                42
            ]
        },
        "value": {
            "type": "number",
            "title": "New parameter value",
            "description": "The value received in this request to update the parameter.",
            "examples": [
                1.84
            ]
        }
    }
}
{
    "account_id": 24146066,
    "parameter_id": 42,
    "value": 1.84
}