Hi,
I declared a new API in ION API. When I test it inside ION API documentation I can select the response content type(the api provider uses different kinds of xml formats).
However when I use the API inside my ION workflow the response content type dropdown under Output Parameters tab is disabled. Below is the first bit of my documentation which has the response content type.
swagger: '2.0'
info:
version: '1.5.0'
title: SDMX RESTful API, v1.5.0
description: >
The SDMX RESTful API
contact: {}
host: sdw-wsrest.ecb.europa.eu
basePath: /service
schemes:
- https
- http
consumes:
- application/json
produces:
- application/json
paths:
/data/{flow}/{key}/{provider}:
get:
description: Get data
summary: Get data
tags:
- Data queries
operationId: Getdata
deprecated: false
produces:
- application/vnd.sdmx.genericdata+xml;version=2.1
- application/vnd.sdmx.structurespecificdata+xml;version=2.1
- application/vnd.sdmx.generictimeseriesdata+xml;version=2.1
- application/vnd.sdmx.structurespecifictimeseriesdata+xml;version=2.1
- application/vnd.sdmx.data+csv;version=1.0.0
- application/vnd.sdmx.data+json;version=1.0.0
parameters:
......