Skip to content

Commit

Permalink
[SELC-5648] fix: add productId filter in getInstitutions API (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
giulia-tremolada authored Dec 3, 2024
1 parent 07ec6a0 commit faaa7f2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
10 changes: 10 additions & 0 deletions infra/apim_v2/api/ms_external_api/v2/openapi.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,16 @@
"schema": {
"type": "string"
}
},
{
"name": "productId",
"in": "query",
"description": "productId",
"required": false,
"style": "form",
"schema": {
"type": "string"
}
}
],
"responses": {
Expand Down
10 changes: 10 additions & 0 deletions infra/apim_v2/api/ms_external_api/v2/openapi.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,16 @@
"schema": {
"type": "string"
}
},
{
"name": "productId",
"in": "query",
"description": "productId",
"required": false,
"style": "form",
"schema": {
"type": "string"
}
}
],
"responses": {
Expand Down
10 changes: 10 additions & 0 deletions infra/apim_v2/api/ms_external_api/v2/openapi.uat.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,16 @@
"schema": {
"type": "string"
}
},
{
"name": "productId",
"in": "query",
"description": "productId",
"required": false,
"style": "form",
"schema": {
"type": "string"
}
}
],
"responses": {
Expand Down
2 changes: 1 addition & 1 deletion infra/apim_v2/apim.tf
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ module "apim_external_api_ms_v2" {
},
{
operation_id = "getInstitutionsUsingGET"
xml_content = templatefile("./api/base_ms_url_external_policy.xml.tpl", {
xml_content = templatefile("./api/base_ms_url_external_product_policy.xml.tpl", {
MS_BACKEND_URL = "https://selc-${var.env_short}-ms-core-ca.${var.ca_suffix_dns_private_name}/"
TENANT_ID = data.azurerm_client_config.current.tenant_id
EXTERNAL-OAUTH2-ISSUER = data.azurerm_key_vault_secret.external-oauth2-issuer.value
Expand Down

0 comments on commit faaa7f2

Please sign in to comment.