Adyen · Schema
ModifyResponse
ModifyResponse schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| additionalData | object | This field contains additional data, which may be returned in a particular response. |
| pspReference | string | Adyen's 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response. |
| response | string | The response: * In case of success, it is either `payout-confirm-received` or `payout-decline-received`. * In case of an error, an informational message is returned. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/payouts-modify-response-schema.json",
"title": "ModifyResponse",
"description": "ModifyResponse schema from Adyen API",
"type": "object",
"properties": {
"additionalData": {
"additionalProperties": {
"type": "string"
},
"description": "This field contains additional data, which may be returned in a particular response.",
"type": "object"
},
"pspReference": {
"description": "Adyen's 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response.",
"type": "string"
},
"response": {
"description": "The response:\n* In case of success, it is either `payout-confirm-received` or `payout-decline-received`.\n* In case of an error, an informational message is returned.",
"type": "string"
}
},
"required": [
"pspReference",
"response"
]
}