Updated Docs

This commit is contained in:
Azeez Muibi
2025-03-25 10:53:48 +01:00
parent e2755349b8
commit e6c537ccff
3 changed files with 42 additions and 26 deletions
+31 -8
View File
@@ -35,6 +35,11 @@
"items": {
"type": "object",
"properties": {
"offerId": {
"type": "integer",
"description": "Offer identifier",
"example": 101
},
"minAmount": {
"type": "number",
"format": "double",
@@ -48,22 +53,40 @@
"example": 20000
},
"productId": {
"type": "string",
"type": "integer",
"description": "Product identifier",
"example": "2030"
},
"offerId": {
"type": "string",
"description": "Offer identifier",
"example": "101"
"example": 2030101
},
"tenor": {
"type": "integer",
"description": "Loan tenor in days",
"example": 30
}
},
"required": [
"offerId",
"minAmount",
"maxAmount",
"productId",
"tenor"
]
},
"example": [
{
"offerId": 101,
"minAmount": 5000,
"maxAmount": 20000,
"productId": 2030,
"tenor": 30
},
{
"offerId": 102,
"minAmount": 20000,
"maxAmount": 50000,
"productId": 2090,
"tenor": 90
}
}
]
},
"resultCode": {
"type": "string",