Updated Docs
This commit is contained in:
@@ -35,6 +35,11 @@
|
|||||||
"items": {
|
"items": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"offerId": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "Offer identifier",
|
||||||
|
"example": 101
|
||||||
|
},
|
||||||
"minAmount": {
|
"minAmount": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "double",
|
"format": "double",
|
||||||
@@ -48,22 +53,40 @@
|
|||||||
"example": 20000
|
"example": 20000
|
||||||
},
|
},
|
||||||
"productId": {
|
"productId": {
|
||||||
"type": "string",
|
"type": "integer",
|
||||||
"description": "Product identifier",
|
"description": "Product identifier",
|
||||||
"example": "2030"
|
"example": 2030101
|
||||||
},
|
|
||||||
"offerId": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Offer identifier",
|
|
||||||
"example": "101"
|
|
||||||
},
|
},
|
||||||
"tenor": {
|
"tenor": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Loan tenor in days",
|
"description": "Loan tenor in days",
|
||||||
"example": 30
|
"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": {
|
"resultCode": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -31,12 +31,6 @@
|
|||||||
"description": "Identifier of a product chosen by user",
|
"description": "Identifier of a product chosen by user",
|
||||||
"example": "101"
|
"example": "101"
|
||||||
},
|
},
|
||||||
"lienAmount": {
|
|
||||||
"type": "number",
|
|
||||||
"format": "double",
|
|
||||||
"description": "Amount of lien placed on user's account",
|
|
||||||
"example": 400
|
|
||||||
},
|
|
||||||
"requestedAmount": {
|
"requestedAmount": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "double",
|
"format": "double",
|
||||||
@@ -49,17 +43,16 @@
|
|||||||
"enum": [0, 1],
|
"enum": [0, 1],
|
||||||
"example": 1
|
"example": 1
|
||||||
},
|
},
|
||||||
"loanType": {
|
"offerID": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Type of loan. 0 – simple; 1 – refinance.",
|
"description": "Offer ID of the loan selected by Customer",
|
||||||
"enum": [0, 1],
|
"example": 1127
|
||||||
"example": 0
|
|
||||||
},
|
},
|
||||||
"channel": {
|
"channel": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Request channel: 'USSD' or 'MobileApp' or 'Web'",
|
"description": "Request channel: “USSD” or “MobileApp” or “Web” - Reference Channel types",
|
||||||
"enum": ["USSD", "MobileApp", "Web"],
|
"enum": ["USSD", "MobileApp", "Web"],
|
||||||
"example": "USSD"
|
"example": "100"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
@@ -70,7 +63,7 @@
|
|||||||
"productId",
|
"productId",
|
||||||
"requestedAmount",
|
"requestedAmount",
|
||||||
"collectionType",
|
"collectionType",
|
||||||
"loanType",
|
"offerID",
|
||||||
"channel"
|
"channel"
|
||||||
],
|
],
|
||||||
"xml": {
|
"xml": {
|
||||||
|
|||||||
@@ -8,6 +8,11 @@
|
|||||||
"channel"
|
"channel"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"transactionId": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
|
||||||
|
"example": "Tr201712RK9232P115"
|
||||||
|
},
|
||||||
"msisdn": {
|
"msisdn": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "User's mobile number in an international format",
|
"description": "User's mobile number in an international format",
|
||||||
@@ -23,11 +28,6 @@
|
|||||||
"description": "Identifier of a product that user is repaying for",
|
"description": "Identifier of a product that user is repaying for",
|
||||||
"example": "101"
|
"example": "101"
|
||||||
},
|
},
|
||||||
"transactionId": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
|
|
||||||
"example": "Tr201712RK9232P115"
|
|
||||||
},
|
|
||||||
"customerId": {
|
"customerId": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Unique identifier of a customer",
|
"description": "Unique identifier of a customer",
|
||||||
|
|||||||
Reference in New Issue
Block a user