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, it 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": "#/components/schemas/SubmitResponse",
"title": "SubmitResponse",
"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* In case of success, it is `payout-submit-received`.\n* In case of an error, an informational message is returned.",
"type": "string"
}
},
"required": [
"pspReference",
"resultCode"
],
"type": "object"
}