Updated Docs

This commit is contained in:
Azeez Muibi
2025-03-25 13:12:38 +01:00
parent 730d97fafa
commit f2178c1484
7 changed files with 83 additions and 57 deletions
+30 -21
View File
@@ -1,20 +1,34 @@
{
"type": "object",
"required": [
"requestId",
"countryCode",
"counter",
"transactionId",
"customerId",
"accountId",
"transactionType"
],
"properties": {
"requestId": {
"type": "string",
"description": "Unique identifier of request",
"example": "R02802"
},
"countryCode": {
"type": "string",
"description": "Unique country code. Please refer to Country Codes table",
"example": "NGR"
},
"counter": {
"type": "string",
"description": "Unique counter for number of attempts of the API call. Original attempt is 1",
"example": "2"
},
"TransactionId": {
"transactionId": {
"type": "string",
"description": "Id of the transaction we are checking",
"example": "T002"
},
"RequestId": {
"type": "string",
"description": "Id of this transaction query",
"example": "R02802"
"example": "Tr201712RK9232P115"
},
"customerId": {
"type": "string",
@@ -26,11 +40,6 @@
"description": "Specific identifier of a user's account",
"example": "2017821799"
},
"countryId": {
"type": "string",
"description": "Set to static value '01'",
"example": "01"
},
"transactionType": {
"type": "string",
"description": "To check state of loan disbursal transaction, value must be 'Disbursement', to check state of loan collection transaction, value must be 'Collection', to check state of penalty charge transaction, value must be 'Penalty'",
@@ -38,15 +47,15 @@
"example": "Disbursement"
}
},
"required": [
"counter",
"TransactionId",
"RequestId",
"customerId",
"accountId",
"countryId",
"transactionType"
],
"example": {
"requestId": "R02802",
"countryCode": "NGR",
"counter": "2",
"transactionId": "Tr201712RK9232P115",
"customerId": "CN621868",
"accountId": "2017821799",
"transactionType": "Disbursement"
},
"xml": {
"name": "TransactionVerifyRequest"
}