diff --git a/apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/controller/AggregatesController.java b/apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/controller/AggregatesController.java index 64a40d059..b020a2101 100644 --- a/apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/controller/AggregatesController.java +++ b/apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/controller/AggregatesController.java @@ -26,7 +26,7 @@ public class AggregatesController { @Operation(summary = "Validate the data related to the aggregated entities present in a CSV file") @POST - @Path("/verification/appio") + @Path("/verification/prod-io") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.MULTIPART_FORM_DATA) public Uni verifyAppIoAggregatesCsv(@NotNull @RestForm("aggregates") File file){ @@ -36,7 +36,7 @@ public Uni verifyAppIoAggregatesCsv(@NotNull @RestForm( @Operation(summary = "Validate the data related to the aggregated entities present in a CSV file") @POST - @Path("/verification/send") + @Path("/verification/prod-pn") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.MULTIPART_FORM_DATA) public Uni verifySendAggregatesCsv(@NotNull @RestForm("aggregates") File file){ @@ -46,7 +46,7 @@ public Uni verifySendAggregatesCsv(@NotNull @RestForm(" @Operation(summary = "Validate the data related to the aggregated entities present in a CSV file") @POST - @Path("/verification/pagopa") + @Path("/verification/prod-pagopa") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.MULTIPART_FORM_DATA) public Uni verifyPagoPaAggregatesCsv(@NotNull @RestForm("aggregates") File file){