Updated the Request

This commit is contained in:
Azeez Muibi
2025-03-24 17:42:32 +01:00
parent ed69f94b8c
commit d3242e0daf
2 changed files with 17 additions and 5 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"properties": {
"transactionId": {
"type": "string",
"description": "Unique identifier of transaction in Simbrella system",
"description": "Unique identifier of transaction. This transaction Id must be consistent across all platforms",
"example": "T001"
},
"fbnTransactionId": {
+16 -4
View File
@@ -1,10 +1,20 @@
{
"type": "object",
"properties": {
"resultCode": {
"transactionId": {
"type": "string",
"description": "Result code of executed transaction, e.g. (00 Success etc.) see result codes table",
"example": "00"
"description": "Unique identifier of transaction in Simbrella system",
"example": "T001"
},
"customerId": {
"type": "string",
"description": "Unique identifier of a user",
"example": "CN621868"
},
"accountId": {
"type": "string",
"description": "Specific identifier of a user's account",
"example": "2017821799"
},
"RACResponse": {
"type": "object",
@@ -86,7 +96,9 @@
}
},
"required": [
"resultCode",
"transactionId",
"customerId",
"accountId",
"RACResponse",
"resultDescription"
],