curl --request GET \
--url https://{BaseURL}/api/public/v1/assets/{assetId}/model \
--header 'Authorization: Bearer <token>'{
"data": {
"version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versionNumber": 123,
"recordType": "<string>",
"published": true,
"comment": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "<string>",
"nodes": [
{}
],
"edges": [
{}
],
"metadata": {}
}
}
}Published model version (full detail) for a model asset
curl --request GET \
--url https://{BaseURL}/api/public/v1/assets/{assetId}/model \
--header 'Authorization: Bearer <token>'{
"data": {
"version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versionNumber": 123,
"recordType": "<string>",
"published": true,
"comment": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "<string>",
"nodes": [
{}
],
"edges": [
{}
],
"metadata": {}
}
}
}GET .../model/versions/{versionId} (including nodes, edges, and metadata), or null if nothing is published yet.