Files
digifi-swagger/schemas/RepaymentResponse.json
T
2025-03-24 15:15:31 +01:00

40 lines
1.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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"
}
}