40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
||
"type": "object",
|
||
"required": [
|
||
"customerId",
|
||
"productId",
|
||
"debtId",
|
||
"resultCode",
|
||
"resultDescription"
|
||
],
|
||
"properties": {
|
||
"customerId": {
|
||
"type": "string",
|
||
"description": "Unique identifier of a user",
|
||
"example": "CN621868"
|
||
},
|
||
"productId": {
|
||
"type": "string",
|
||
"description": "Identifier of a product that user is payed for",
|
||
"example": "101"
|
||
},
|
||
"debtId": {
|
||
"type": "string",
|
||
"description": "Unique identifier of an existing debt of a user",
|
||
"example": "273194670"
|
||
},
|
||
"resultCode": {
|
||
"type": "string",
|
||
"description": "Result code of executed transaction, e.g. (00 – Success etc.) see result codes table",
|
||
"example": "00"
|
||
},
|
||
"resultDescription": {
|
||
"type": "string",
|
||
"description": "Description of provided result code",
|
||
"example": "Successful"
|
||
}
|
||
},
|
||
"xml": {
|
||
"name": "RepaymentResponse"
|
||
}
|
||
} |