diff --git a/helm/Chart.yaml b/helm/Chart.yaml
index c18b493..4699371 100644
--- a/helm/Chart.yaml
+++ b/helm/Chart.yaml
@@ -2,8 +2,8 @@ apiVersion: v2
name: pagopa-api-config-selfcare-integration
description: Microservice that manages requests from selfcare
type: application
-version: 1.82.0
-appVersion: 1.10.10
+version: 1.85.0
+appVersion: 1.10.10-3-fix-iban-list
dependencies:
- name: microservice-chart
version: 2.8.0
diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml
index 0674374..db44a89 100644
--- a/helm/values-dev.yaml
+++ b/helm/values-dev.yaml
@@ -27,7 +27,7 @@ microservice-chart: µservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
- tag: "1.10.10"
+ tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml
index ac4d12a..4357a87 100644
--- a/helm/values-prod.yaml
+++ b/helm/values-prod.yaml
@@ -27,7 +27,7 @@ microservice-chart: µservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
- tag: "1.10.10"
+ tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml
index 7640604..c7cbb66 100644
--- a/helm/values-uat.yaml
+++ b/helm/values-uat.yaml
@@ -27,7 +27,7 @@ microservice-chart: µservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
- tag: "1.10.10"
+ tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
diff --git a/openapi/openapi.json b/openapi/openapi.json
index 3be638b..a64e3d4 100644
--- a/openapi/openapi.json
+++ b/openapi/openapi.json
@@ -4,7 +4,7 @@
"title": "API-Config - SelfCare Integration",
"description": "Spring application exposes APIs for SelfCare",
"termsOfService": "https://www.pagopa.gov.it/",
- "version": "1.10.10"
+ "version": "1.10.10-3-fix-iban-list"
},
"servers": [
{
@@ -1081,7 +1081,7 @@
}
]
},
- "/ibans": {
+ "/ibans/": {
"post": {
"tags": [
"Ibans"
@@ -1243,7 +1243,7 @@
"Ibans"
],
"summary": "Get creditor institution ibans list",
- "operationId": "getIbans_1",
+ "operationId": "getIbansList",
"parameters": [
{
"name": "creditorinstitutioncode",
diff --git a/pom.xml b/pom.xml
index 43a4f1a..7948cca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,7 @@
it.gov.pagopa.api-config
selfcareintegration
- 1.10.10
+ 1.10.10-3-fix-iban-list
API-Config - SelfCare Integration
Spring application exposes APIs for SelfCare
diff --git a/src/main/java/it/gov/pagopa/apiconfig/selfcareintegration/controller/IbanController.java b/src/main/java/it/gov/pagopa/apiconfig/selfcareintegration/controller/IbanController.java
index 4eb4466..cc3c04f 100644
--- a/src/main/java/it/gov/pagopa/apiconfig/selfcareintegration/controller/IbanController.java
+++ b/src/main/java/it/gov/pagopa/apiconfig/selfcareintegration/controller/IbanController.java
@@ -95,7 +95,7 @@ public IbanController(IbansService ibansService) {
}
)
@PostMapping(
- value = "",
+ value = "/",
produces = {MediaType.APPLICATION_JSON_VALUE}
)
@Cacheable(value = "getIbans")
@@ -174,7 +174,7 @@ public ResponseEntity getIbans(
@GetMapping(
value = "/{creditorinstitutioncode}/list",
produces = {MediaType.APPLICATION_JSON_VALUE})
- public ResponseEntity getIbans(
+ public ResponseEntity getIbansList(
@Size(max = 50)
@Parameter(
description = "The fiscal code of the Organization.",