Table of contents
Mesh Export
Download API definition:
This API is a Technical Preview and is available for testing purposes only. Do not use in production.
POST https://qa-api.bentley.com/mesh-export/

Start a mesh export from the iModel. Exports are persisted until deleted.

Request headers

Name
Required?
Description
Authorization
Yes

OAuth access token with itwin-platform scope

Accept
Yes

Setting to application/vnd.bentley.itwin-platform.v1+json is recommended.

Request body

StartExport

Name
Type
Required?
Description
iModelId
String
Yes

ID of the iModel to extract from.

changesetId
String
Yes

ID of the changeset to extract from. If omitted, export latest.

StartExport exportType
No

Type of mesh to create, Accepted value are IMODEL, CESIUM and 3DTiles (or 3DTILES). If omitted, defaults to 3DTiles.

Tiler Config
No

A list of key-value pair configuration items forwarded to the tiler executable to customize tile generation behavior.

lastModified
Date-time
No

Date when job metadata was last modified.

Example

json
{
    "iModelId": "b80f4fc2-4dbb-42c5-bb1f-f5aace3977dc",
    "changesetId": "ed94ed9a0704918d36eeb620219f5e17d8858858",
    "exportType": "3DTiles"
}

Response 202 Accepted

The export was accepted and will be processed

json
{
    "export": {
        "id": "fc3aa1e5-5196-4dd9-a73e-4cfda693e576",
        "displayName": "My iModel",
        "status": "NotStarted",
        "lastModified": "2024-08-22T03:18:43Z",
        "request": {
            "iModelId": "b80f4fc2-4dbb-42c5-bb1f-f5aace3977dc",
            "changesetId": "ed94ed9a0704918d36eeb620219f5e17d8858858",
            "exportType": "3DTiles"
        }
    }
}

Response 401 Unauthorized

This response indicates that request lacks valid authentication credentials. Access token might not been provided, issued by the wrong issuer, does not have required scopes or request headers were malformed.

json
{
    "error": {
        "code": "HeaderNotFound",
        "message": "Header Authorization was not found in the request. Access denied."
    }
}

Response 404 Not Found

Requested iModel is not available.

json
{
    "error": {
        "code": "IModelNotFound",
        "message": "Requested iModel is not available."
    }
}

Response 422 Unprocessable Entity

Cannot create export job.

json
{
    "error": {
        "code": "InvalidMeshExportRequest",
        "message": "Cannot create export job.",
        "details": [{
            "code": "InvalidRequestBody",
            "message": "iModelId cannot be empty.",
            "target": "iModelId"
        }]
    }
}

Response 429 Too many requests

This response indicates that the client sent more requests than allowed by this API for the current tier of the client.

json
{
    "error": {
        "code": "RateLimitExceeded",
        "message": "The client sent more requests than allowed by this API for the current tier of the client."
    }
}

Response headers

Name
Description
retry-after

Number of seconds to wait until client is allowed to make more requests.

Link

An href link reference.

Name
Type
Description
href
String

Http reference

StartExport exportType

Type of mesh to create, Accepted value are IMODEL, CESIUM and 3DTiles (or 3DTILES). If omitted, defaults to 3DTiles.

Name
Type
Description
IMODEL
String
CESIUM
String
3DTILES
String
3DTiles
String

StartExport

Request body for starting a mesh export.

Name
Type
Description
iModelId
String

ID of the iModel to extract from.

changesetId
String

ID of the changeset to extract from. If omitted, export latest.

StartExport exportType

Type of mesh to create, Accepted value are IMODEL, CESIUM and 3DTiles (or 3DTILES). If omitted, defaults to 3DTiles.

Tiler Config

A list of key-value pair configuration items forwarded to the tiler executable to customize tile generation behavior.

lastModified
Date-time

Date when job metadata was last modified.

TilerConfigItem

A key-value configuration item for the tilerConfig.

Name
Type
Description
key
String

Configuration key name.

value

Configuration value; may be a string, number, or boolean.

ExportResultBody exportType

Type of mesh exported.

Name
Type
Description
IMODEL
String
CESIUM
String
3DTILES
String
3DTiles
String

ExportResultBody

The original export request body stored with the result.

Name
Type
Description
iModelId
String

ID of the iModel.

contextId
String

Context/iTwin ID of the export (kept for backwards compatibility).

iTwinId
String

iTwin ID of the export.

changesetId
String

ID of the changeset extracted from.

ExportResultBody exportType

Type of mesh exported.

changesetIndex
String

Index of the changeset.

Tiler Config

A list of key value pairs forwarded to the tiler executable.

ExportResponse

Response containing the details of a single export.

Name
Type
Description
export

ExportStatus

Status of the export.

Name
Type
Description
NotStarted
String
InProgress
String
Complete
String
Invalid
String

ExportDirStructure

List of export directory children along with their size, in bytes.

ExportMetrics

Memory and CPU usage metrics from the graphics and tiles producer.

ExportStatsDisplay

Statistics of the export job. This obsoletes the Consumption type.

Name
Type
Description
iModelSize
Number

Size of the iModel .bin file, in bytes

compressedSize
Number

Size of the exported and compressed tiles, in bytes.

rawSize
Number

Size of the exported tiles, in bytes.

startTime
Date-time

Starting date of the export job, pretty-printed.

duration
Number

Duration of the export job, in milliseconds.

diskSize
Number

Disk size, in bytes.

freeDiskSpace
Number

Free disk space, in bytes.

exportDirSize
Number

Export directory size, in bytes.

exportDirStructure

Export

An export with all its details.

Name
Type
Description
id
String

ID of the export request.

displayName
String

Name of the exported iModel

lastModified
String

Date when job metadata was last modified

error
String

Error message for Invalid exports.

_links.mesh

Error

Contains error information.

Name
Type
Description
code
String

One of a server-defined set of error codes.

message
String

A human-readable representation of the error.

target
String, null

The target of the error.

Error Response

Gives details for an error that occurred while handling the request. Note that clients MUST NOT assume that every failed request will produce an object of this schema, or that all of the properties in the response will be non-null, as the error may have prevented this response from being constructed.

Name
Type
Description
error

Was this page helpful?