Updated Swagger Documentation

This commit is contained in:
Azeez Muibi
2025-03-24 15:15:31 +01:00
parent 67dfc32e4a
commit 9684d6dd29
56 changed files with 1344 additions and 349 deletions
+18
View File
@@ -3,27 +3,45 @@
"properties": {
"transactionId": {
"type": "string",
"description": "Unique identifier of request in Simbrella system",
"example": "173021"
},
"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"
},
"fbnTransactionId": {
"type": "string",
"description": "Unique id of the transaction received from FBN in Eligibility or Provision requests",
"example": "FBN2411011411413A74960"
},
"origTransactionId": {
"type": "string",
"description": "TransactionId sent by Simbrella within initial request to Firstbank API",
"example": "2411011411413A74960"
},
"customerId": {
"type": "string",
"description": "Unique identifier of a user",
"example": "CN621868"
}
},
"required": [
"transactionId",
"debtId",
"transactionType",
"fbnTransactionId",
"origTransactionId",
"customerId"
],
"xml": {
"name": "NewTransactionCheckRequest"
}
}