Adjustment reversal created (outdated)
This functionality is scheduled to be deprecated. For any new deployments, use Force operation instead.
This event occurs when the platform creates an adjustment reversal.
More information: Adjustments overview
Type: object
Domain: audit
Event: core_reversal
Version: 1
method required
Title: The operation HTTP method
Type: string
Example:
POST
uri required
Title: The API operation URI
Type: string
Example:
/v1/adjustment
email required
Title: The operator email
Type: string or null
Example:
[email protected]
roles required
Title: The operator roles
Type: array or null
Example:[ "backoffice-operator", "crm-operator", "geroficios-operator", "inspetoria-master", "inspetoria-operator", "itibackoffice-master", "itibackoffice-operator", "itinivel1-operator", "treasury-operator" ]
object required
Title: The audit data message
Type: objectadjustment_type_id required
Title: The Adjustment type id
Type: integer
Example:
171238
transaction_reverted_id required
Title: The reverted Transaction id
Type: integer
Example:
1872246
amount required
Title: The Amount value
Type: number
Example:
0.02
description required
Title: The Description
Type: string or null
Example:
Teste 2
account_id required
Title: The account identifier
Type: integer
Example:
123
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Adjustment reversal created (outdated)",
"description": "<b>This functionality is scheduled to be deprecated. For any new deployments, use <a href='https://developers.pismo.io/pismo-docs/docs/force-operation' target='_blank'>Force operation</a> instead.</b><br>This event occurs when the platform creates an adjustment reversal.<br>More information: <a href='https://developers.pismo.io/pismo-docs/docs/adjustments-overview' target='_blank'>Adjustments overview</a>",
"required": [
"method",
"uri",
"email",
"roles",
"object"
],
"properties": {
"method": {
"type": "string",
"title": "The operation HTTP method",
"examples": [
"POST"
]
},
"uri": {
"type": "string",
"title": "The API operation URI",
"examples": [
"/v1/adjustment"
]
},
"email": {
"type": [
"string",
"null"
],
"title": "The operator email",
"examples": [
"[email protected]"
]
},
"roles": {
"type": [
"array",
"null"
],
"title": "The operator roles",
"items": {
"type": "string",
"title": "The Roles",
"examples": [
"backoffice-operator",
"crm-operator",
"geroficios-operator",
"inspetoria-master",
"inspetoria-operator",
"itibackoffice-master",
"itibackoffice-operator",
"itinivel1-operator",
"treasury-operator"
]
}
},
"object": {
"type": "object",
"title": "The audit data message",
"required": [
"amount",
"adjustment_type_id",
"transaction_reverted_id",
"description",
"account_id"
],
"properties": {
"adjustment_type_id": {
"type": "integer",
"title": "The Adjustment type id",
"examples": [
171238
]
},
"transaction_reverted_id": {
"type": "integer",
"title": "The reverted Transaction id",
"examples": [
1872246
]
},
"amount": {
"type": "number",
"title": "The Amount value",
"examples": [
0.02
]
},
"description": {
"type": [
"string",
"null"
],
"title": "The Description",
"examples": [
"Teste 2"
]
},
"account_id": {
"type": "integer",
"title": "The account identifier",
"examples": [
123
]
}
}
}
}
}
{
"method": "POST",
"uri": "/v1/adjustment",
"email": "[email protected]",
"roles": [
"backoffice-operator",
"crm-operator",
"geroficios-operator",
"inspetoria-master",
"inspetoria-operator",
"itibackoffice-master",
"itibackoffice-operator",
"itinivel1-operator",
"treasury-operator"
],
"object": {
"adjustment_type_id": 171238,
"transaction_reverted_id": 1872246,
"amount": 0.02,
"description": "Teste 2",
"account_id": 123
}
}
Updated 7 days ago