Skip to content

Commit

Permalink
Updated ratings POST API version as v2
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-tarento committed Aug 14, 2023
1 parent 113b229 commit 62f4153
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ResponseEntity<?> ratingLookUp(@RequestBody LookupRequest request) {
return new ResponseEntity<>(response, response.getResponseCode());
}

@PostMapping("/ratings/v1/read")
@PostMapping("/ratings/v2/read")
public ResponseEntity<?> readRating(@RequestBody Map<String, Object> request) {
SBApiResponse response = ratingService.readRatings(request);
return new ResponseEntity<>(response, response.getResponseCode());
Expand Down

0 comments on commit 62f4153

Please sign in to comment.