Files
digifi-BankToProductCore/app/swagger/schemas/EligibilityCheckResponse.json
2025-09-12 13:06:41 +01:00

82 lines
2.3 KiB
JSON

{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"example": "5268548"
},
"transactionId": {
"type": "string",
"example": "TRX201712RK9232P115"
},
"countryCode": {
"type": "string",
"example": "NGR"
},
"msisdn": {
"type": "string",
"example": "2348093451342"
},
"eligibleOffers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"offerId": {
"type": "string",
"example": "SAL90000204"
},
"productId": {
"type": "string",
"example": "3MPC"
},
"minAamount": {
"type": "number",
"format": "decimal",
"example": 20000.00
},
"maxAamount": {
"type": "number",
"format": "decimal",
"example": 31257.00
},
"tenor": {
"type": "integer",
"example": 90
}
}
},
"example": [
{
"max_amount": "31257.00",
"min_amount": 20000.0,
"offerId": "SAL90000204",
"product_id": "3MPC",
"tenor": 90
},
{
"max_amount": "20838.00",
"min_amount": 5000.0,
"offerId": "SAL30000205",
"product_id": "AMPC",
"tenor": 30
}
]
},
"resultDescription": {
"type": "string",
"example": "Successful"
},
"resultCode": {
"type": "string",
"example": "00"
},
"accountId": {
"type": "string",
"example": "ACN8263457"
}
},
"xml": {
"name": "EligibilityCheckResponse"
}
}