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. |
| recurringDetailReference | string | The token which you can use later on for submitting the payout. |
| resultCode | string | The result code of the transaction. `Success` indicates that the details were stored successfully. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StoreDetailResponse",
"title": "StoreDetailResponse",
"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"
},
"recurringDetailReference": {
"description": "The token which you can use later on for submitting the payout.",
"type": "string"
},
"resultCode": {
"description": "The result code of the transaction. `Success` indicates that the details were stored successfully.",
"type": "string"
}
},
"required": [
"pspReference",
"recurringDetailReference",
"resultCode"
],
"type": "object"
}