Export BRZ


You can mimic the export to BRZ functionality you see in Navigator by making your own export process for assemblies.

You'll need to know a RootEntity.ID value.

Export

We recommend running at most two export jobs at a time.

Export BRZ

Request body
interface IPostBody {
    "Type": "BRZ";
    "RootEntity.ID": string;
}
Response
interface IResponse {
    "PendingActionID": number;
}
Javascript example

When the Pending Action is marked as completed, here is the result to expect:

interface IResult {
    // ID of the generated temp file.
    // To create a download URL, use your API base url with "/tempfile/{ID}" as the path.
    "TempFile.ID": string;
}