curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/models/{modelId}/revisions/{revisionId}/logs \
--header 'Authorization: Bearer <token>'{
"items": [
{
"timestamp": 0,
"severity": 7,
"type": "CONVERTER/FAILED",
"info": "<string>"
}
]
}Required capabilities:
threedAcl:READ
List log entries for the revision
curl --request GET \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/3d/models/{modelId}/revisions/{revisionId}/logs \
--header 'Authorization: Bearer <token>'{
"items": [
{
"timestamp": 0,
"severity": 7,
"type": "CONVERTER/FAILED",
"info": "<string>"
}
]
}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.
Minimum severity to retrieve (3 = INFO, 5 = WARN, 7 = ERROR).
A list of log entries
Show child attributes
Was this page helpful?