Files
digifi-swagger/schemas/RepaymentRequest.json
T
Azeez Muibi e6c537ccff Updated Docs
2025-03-25 10:53:48 +01:00

45 lines
1.3 KiB
JSON

{
"type": "object",
"required": [
"transactionId",
"customerId",
"debtId",
"productId",
"channel"
],
"properties": {
"transactionId": {
"type": "string",
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
"example": "Tr201712RK9232P115"
},
"msisdn": {
"type": "string",
"description": "User's mobile number in an international format",
"example": "3451342"
},
"debtId": {
"type": "string",
"description": "Debt identifier provided in 'Current Loans' response",
"example": "273194670"
},
"productId": {
"type": "string",
"description": "Identifier of a product that user is repaying for",
"example": "101"
},
"customerId": {
"type": "string",
"description": "Unique identifier of a customer",
"example": "CN621868"
},
"channel": {
"type": "string",
"description": "Request channel: USSD or APP",
"example": "100"
}
},
"xml": {
"name": "RepaymentRequest"
}
}