Use POST not GET for request requiring body

This commit is contained in:
Ehren Kret 2022-06-17 14:29:48 -05:00
parent cbc95415b7
commit e3778c17ea
1 changed files with 3 additions and 1 deletions

View File

@ -44,6 +44,7 @@ import javax.ws.rs.GET;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.NotAuthorizedException;
import javax.ws.rs.NotFoundException;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
@ -323,7 +324,8 @@ public class ProfileController {
}
@Timed
@GET
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Path("/identity_check/batch")
public CompletableFuture<BatchIdentityCheckResponse> runBatchIdentityCheck(BatchIdentityCheckRequest request) {