Even thout openapi specification supports dynamic parameters in the server url openai environment doesn’t permit it.
For example this snippet is valid according to opeapi 3.1.0
"servers": [
{
"url": "https://{storename}.myshopify.com/admin/api/{api_version}",
"variables": {
"storename": {
"default": "example-store",
"description": "The name of the user's Shopify store"
},
"api_version": {
"default": "2023-10",
"description": "The API version"
}
}
}
],
but when i test the action it gives the “Something is not valid error”
Only if I hardcode the dynamic parameter, it works.
Are there any solutions to this?