I'm finally trying to move my code from the /v1 API to the /v2 API. I'm trying to deal with the scenario of having multiple Revit models linked to each other, and you'd like to have a viewable for each one.
For example, models A, B and C. For links: A -> B and A -> C, B -> A and B -> C, and C -> A and C -> B.
In the old API, we would have worked out the dependencies and registered them with SetReference() before we kicked off the translation.
It appears that in the new API, the new approach is to upload a zip file, and then you can kick off the job by specifying the "root file".
What I'm wondering about now is whether it is possible to upload one zip file, and then create three derivatives (one for each model)? And would be done with a single call to the Create Job? or multiple calls? (my preliminary attempt at multiple calls only gives the last derivative job)