Files
digifi-swagger/schemas/LoanInformationRequest.json
T
2025-03-24 15:15:31 +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": "LoanInformationRequest"
},
"transactionId": {
"type": "string",
"description": "Unique identifier of transaction in FIRSTBANK system",
"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": "LoanInformationRequest"
}
}