curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/models/{modelId}/revisions/{revisionId}/outputs \
--header 'Authorization: Bearer <token>'{
"items": [
{
"format": "ept-pointcloud",
"version": 1,
"blobId": 4503599627370496
}
]
}Required capabilities:
threedAcl:READ
Retrieve a list of available outputs for a processed 3D model. An output can be a format that can be consumed by a viewer (e.g. Reveal) or import in external tools. Each of the outputs will have an associated version which is used to identify the version of output format (not the revision of the processed output). Note that the structure of the outputs will vary and is not covered here.
curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/models/{modelId}/revisions/{revisionId}/outputs \
--header 'Authorization: Bearer <token>'{
"items": [
{
"format": "ept-pointcloud",
"version": 1,
"blobId": 4503599627370496
}
]
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
Format identifier, e.g. 'ept-pointcloud' (point cloud). Well known formats are: 'ept-pointcloud' (point cloud data) or 'reveal-directory' (output supported by Reveal). 'all-outputs' can be used to retrieve all outputs for a 3D revision. Note that some of the outputs are internal, where the format and availability might change without warning.
Returns a list of outputs and available versions per output for the given revision.
A list of named and versioned outputs for the model. Note that the list is not sorted.
Show child attributes
Was this page helpful?