Adyen · Schema
StoreDetailAndSubmitResponse
StoreDetailAndSubmitResponse 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 | A new reference to uniquely identify this request. |
| refusalReason | string | In case of refusal, an informational message for the reason. |
| resultCode | string | The response: * In case of success is payout-submit-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-store-detail-and-submit-response-schema.json",
"title": "StoreDetailAndSubmitResponse",
"description": "StoreDetailAndSubmitResponse 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": "A new reference to uniquely identify this request.",
"type": "string"
},
"refusalReason": {
"description": "In case of refusal, an informational message for the reason.",
"type": "string"
},
"resultCode": {
"description": "The response:\n\n* In case of success is payout-submit-received.\n* In case of an error, an informational message is returned.",
"type": "string"
}
},
"required": [
"pspReference",
"resultCode"
]
}