We have a use case where some of our conversion requests will be synchronous and some will be asynchronous in the same application.
Async requests are specified by a URI path prefix instead of a request param and I don't see a way to add that prefix to the request builder in a ConvertApi::Task as it is hard-coded to start with /convert
I could modify the base_uri in ConvertApi::Configuration but that would change it for all calls to ConvertApi#convert in the current thread instead of for a single request.
Am I missing something?
We have a use case where some of our conversion requests will be synchronous and some will be asynchronous in the same application.
Async requests are specified by a URI path prefix instead of a request param and I don't see a way to add that prefix to the request builder in a
ConvertApi::Taskas it is hard-coded to start with/convertI could modify the
base_uriinConvertApi::Configurationbut that would change it for all calls toConvertApi#convertin the current thread instead of for a single request.Am I missing something?