diff --git a/src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java b/src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
index 4b5f00671569a05278d7dc5b122a01a0aa0dd2a5..d4dc2c7a3cc36c5e4b1b46898ce50bbf9ff221b6 100644
--- a/src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+++ b/src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
@@ -2,6 +2,7 @@ package com.tarento.upsmf.userManagement.controller;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import com.tarento.upsmf.userManagement.handler.UserHandler;
+import com.tarento.upsmf.userManagement.model.Transaction;
 import com.tarento.upsmf.userManagement.services.PaymentService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.MediaType;
@@ -10,6 +11,7 @@ import org.springframework.web.bind.annotation.*;
 
 import java.io.IOException;
 import java.net.URISyntaxException;
+import java.util.List;
 import java.util.Map;
 
 @RestController
@@ -86,5 +88,14 @@ public class UserController {
     public String usrOTP(@RequestBody JsonNode body) throws IOException {
         return userHandler.usrOTP(body);
     }
-  
+
+    @GetMapping(value = "/transaction", produces = "application/json")
+    public ResponseEntity<List<Transaction>> getAllTransactions() {
+        return userHandler.getAllTransactions();
+    }
+
+    @GetMapping(value = "/transaction/{uniqueRefNumber}", produces = "application/json")
+    public ResponseEntity<?> getTransactionByUniqueRefNumber(@PathVariable String uniqueRefNumber) {
+        return userHandler.getTransactionByUniqueRefNumber(uniqueRefNumber);
+    }
 }
diff --git a/src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java b/src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
index d842b6b76203362db433158007d578d7aa2d7acf..96571ccdc3607150e070f1bcd4272bc9d7ab9d44 100644
--- a/src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+++ b/src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
@@ -2,6 +2,7 @@ package com.tarento.upsmf.userManagement.handler;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import com.tarento.upsmf.userManagement.model.Payment;
+import com.tarento.upsmf.userManagement.model.Transaction;
 import com.tarento.upsmf.userManagement.services.UserService;
 import com.tarento.upsmf.userManagement.utility.*;
 import org.slf4j.Logger;
@@ -12,6 +13,7 @@ import org.springframework.stereotype.Component;
 
 import java.io.IOException;
 import java.net.URISyntaxException;
+import java.util.List;
 import java.util.Map;
 
 @Component
@@ -141,8 +143,14 @@ public class UserHandler {
     }
 
     public String usrOTP(JsonNode body) throws IOException {
-        logger.info("OTP mail to user with body {}",body);
+        logger.info("OTP mail to user with body {}", body);
         return userService.usrOTP(body);
     }
-      
+    public ResponseEntity<List<Transaction>> getAllTransactions() {
+        return userService.getAllTransactions();
+    }
+
+    public ResponseEntity<?> getTransactionByUniqueRefNumber(String uniqueRefNumber) {
+        return userService.getTransactionByUniqueRefNumber(uniqueRefNumber);
+    }
 }
diff --git a/src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java b/src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java
index eea11264d8d2f72e50cb2c4ad21c12ee97845b1f..f79305e80d74e56138353d14ec5ee88cc8d6274e 100644
--- a/src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java
+++ b/src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java
@@ -4,4 +4,5 @@ import com.tarento.upsmf.userManagement.model.Transaction;
 import org.springframework.data.jpa.repository.JpaRepository;
 
 public interface TransactionRepository extends JpaRepository<Transaction,Long> {
+    Transaction findByUniqueRefNumber(String uniqueRefNumber);
 }
diff --git a/src/main/java/com/tarento/upsmf/userManagement/services/UserService.java b/src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
index 99314c12f8ab38caa95e41ce346650a75d905c4f..8d15ed6dca9531a835d78350e1d4db1050cb1a69 100644
--- a/src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+++ b/src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
@@ -1,7 +1,8 @@
 package com.tarento.upsmf.userManagement.services;
 
 import com.fasterxml.jackson.databind.JsonNode;
-import com.tarento.upsmf.userManagement.model.Payment;
+import com.tarento.upsmf.userManagement.model.Transaction;
+import com.tarento.upsmf.userManagement.repository.TransactionRepository;
 import com.tarento.upsmf.userManagement.utility.KeycloakTokenRetriever;
 import com.tarento.upsmf.userManagement.utility.KeycloakUserCredentialPersister;
 import com.tarento.upsmf.userManagement.utility.SunbirdRCKeycloakTokenRetriever;
@@ -20,8 +21,11 @@ import org.springframework.web.util.UriComponentsBuilder;
 
 import javax.annotation.PostConstruct;
 import java.io.IOException;
-import java.net.*;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.util.List;
 import java.util.Map;
+import java.util.Optional;
 
 @Component
 @PropertySource({ "classpath:application.properties" })
@@ -44,6 +48,9 @@ public class UserService {
     @Autowired
     private KeycloakUserCredentialPersister keycloakUserCredentialPersister;
 
+    @Autowired
+    private TransactionRepository transactionRepository;
+
     private static Environment environment;
     private String BASE_URL;
     private String KEYCLOAK_BASEURL;
@@ -197,5 +204,21 @@ public class UserService {
         logger.info("OTP mail to user with body {}",body);
         return keycloakUserCredentialPersister.sendOTPMail(body);
     }
+    public ResponseEntity<List<Transaction>> getAllTransactions() {
+        List<Transaction> result = transactionRepository.findAll();
+        if (result.isEmpty()) {
+            return new ResponseEntity<>(HttpStatus.NOT_FOUND);
+        }
+        return new ResponseEntity<>(result, HttpStatus.OK);
+    }
+
+    public ResponseEntity<Transaction> getTransactionByUniqueRefNumber(String uniqueRefNumber) {
+        Transaction transaction = transactionRepository.findByUniqueRefNumber(uniqueRefNumber);
+        if (transaction == null) {
+            return new ResponseEntity<>(HttpStatus.NOT_FOUND);
+        }
+        return new ResponseEntity<>(transaction, HttpStatus.OK);
+    }
+
 
-}
+}
\ No newline at end of file
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index a31f09e60dd4464f2563ef494212499a93b39b33..f7873357f1b2467d33e0112890f5f009e7367102 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -27,7 +27,7 @@ spring.datasource.password=postgres
 spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
 spring.jpa.properties.hibernate.format_sql=true
 spring.jpa.show-sql=false
-spring.jpa.hibernate.ddl-auto=create
+spring.jpa.hibernate.ddl-auto=none
 
 otp.mail.endpoint = /api/v1/keycloak/mail/sendOTP
 user.create.mail.endpoint =/api/v1/keycloak/mail/userCreate