I am using Azure Data Factory
to run a pipeline that invokes REST API
. For this I am using ADF REST
connector. As per documentation, Accept
header only takes value as application/json
. But the problem is the API that I am invoking is maintaining versions in the Accept
header like application/***v2+json
so unable to pass the same.
Can someone let me know if it’s possible or any workaround?
REST connector ignores any “Accept” header specified in
additionalHeaders. As REST connector only support response in JSON, it
will auto generate a header of Accept: application/json
Update: I am able to invoke API using HTTP connector by passing Accept header as required in this case. But would want if this is possible with REST connector.
9