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": { "properties": {
"transactionId": { "transactionId": {
"type": "string", "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" "example": "T001"
}, },
"fbnTransactionId": { "fbnTransactionId": {
+16 -4
View File
@@ -1,10 +1,20 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"resultCode": { "transactionId": {
"type": "string", "type": "string",
"description": "Result code of executed transaction, e.g. (00 Success etc.) see result codes table", "description": "Unique identifier of transaction in Simbrella system",
"example": "00" "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": { "RACResponse": {
"type": "object", "type": "object",
@@ -86,7 +96,9 @@
} }
}, },
"required": [ "required": [
"resultCode", "transactionId",
"customerId",
"accountId",
"RACResponse", "RACResponse",
"resultDescription" "resultDescription"
], ],