Files
digifi-swagger/schemas/LoanStatusRequest.json
T
2025-03-24 17:17:43 +01:00

40 lines
1.1 KiB
JSON

{
"type": "object",
"required": [
"$type",
"transactionId",
"customerId",
"channel"
],
"properties": {
"$type": {
"type": "string",
"description": "Fixed value to identify request type",
"example": "LoanStatusRequest"
},
"transactionId": {
"type": "string",
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
"example": "Tr201712RK9232P115"
},
"customerId": {
"type": "string",
"description": "Unique identifier of a customer",
"example": "CN621868"
},
"msisdn": {
"type": "string",
"description": "User's mobile number in an international format",
"example": "3451342"
},
"channel": {
"type": "string",
"description": "Request channel: USSD, MobileApp, or Web",
"enum": ["USSD", "MobileApp", "Web"],
"example": "USSD"
}
},
"xml": {
"name": "LoanStatusRequest"
}
}