In the OpenAPI spec we use
'/lists/v2/audiences/{audienceId}':
GET: ....
This results in the examples
curl --request GET \
--url https://example.com/lists/v2/audiences/%7BaudienceId%7D \
--header 'X-ApiKey: REPLACE_KEY_VALUE'
The {} get transformed in the %7B %7D while we would expect https://example.com/lists/v2/audiences/{audienceId}
Am I doing something wrong or have I missed a configuration parameter?
In the OpenAPI spec we use
This results in the examples
The {} get transformed in the
%7B%7Dwhile we would expect https://example.com/lists/v2/audiences/{audienceId}Am I doing something wrong or have I missed a configuration parameter?