Files
digifi-swagger/schemas/StatusCallRequest.json
Azeez Muibi 4e8fc9cd34 Updated Docs
2025-03-25 10:10:29 +01:00

47 lines
1.4 KiB
JSON

{
"type": "object",
"properties": {
"requestId": {
"type": "string",
"description": "RequestId for transaction sent by Simbrella within initial request to Firstbank API",
"example": "R02802"
},
"countryCode": {
"type": "string",
"description": "Unique country code.",
"example": "NGR"
},
"transactionId": {
"type": "string",
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
"example": "Tr201712RK9232P115"
},
"debtId": {
"type": "string",
"description": "Unique identifier of provided loan in Simbrella system",
"example": "173021"
},
"transactionType": {
"type": "string",
"description": "Type of Transaction Simbrella is sending Transaction Check for",
"enum": ["Disbursement", "Collection", "PenalCharge"],
"example": "Disbursement"
},
"customerId": {
"type": "string",
"description": "Unique identifier of a user",
"example": "CN621868"
}
},
"required": [
"requestId",
"countryCode",
"transactionId",
"debtId",
"transactionType",
"customerId"
],
"xml": {
"name": "StatusCallRequest"
}
}