From d3242e0dafde44830fed705e19195114c79ea35a Mon Sep 17 00:00:00 2001 From: Azeez Muibi Date: Mon, 24 Mar 2025 17:42:32 +0100 Subject: [PATCH] Updated the Request --- schemas/RACCheckRequest.json | 2 +- schemas/RACCheckResponse.json | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/schemas/RACCheckRequest.json b/schemas/RACCheckRequest.json index f956d09..ff65f98 100644 --- a/schemas/RACCheckRequest.json +++ b/schemas/RACCheckRequest.json @@ -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": { diff --git a/schemas/RACCheckResponse.json b/schemas/RACCheckResponse.json index 5f19c87..e0f0a32 100644 --- a/schemas/RACCheckResponse.json +++ b/schemas/RACCheckResponse.json @@ -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" ],