GET api/project/{projectId}/model/{masterId}?checkConversionStatus={checkConversionStatus}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

string

Required

masterId

globally unique identifier

Required

checkConversionStatus

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Model3dMasterDTO
NameDescriptionTypeAdditional information
ProjectId

string

None.

Id

globally unique identifier

None.

Name

string

None.

VersionCount

integer

None.

LatestVersion

Model3dVersionDTO

None.

State

string

None.

StorageType

string

None.

Region

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ProjectId": "sample string 1",
  "Id": "3192ba48-03a6-4c68-8182-8dbb0b847a16",
  "Name": "sample string 3",
  "VersionCount": 4,
  "LatestVersion": {
    "Version": 1,
    "Description": "sample string 2",
    "LocalPath": "sample string 3",
    "ViewableUrn": "sample string 4",
    "ViewableUrnBase64": "sample string 5",
    "ConversionStatus": "sample string 6",
    "CreationDateUTC": "2025-12-21T07:54:29.8629661+00:00",
    "XDataJSON": {}
  },
  "State": "sample string 5",
  "StorageType": "sample string 6",
  "Region": "sample string 7"
}

application/xml, text/xml

Sample:
<Model3dMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Autodesk.Consulting.SWECO.BLRD.Models">
  <Id>3192ba48-03a6-4c68-8182-8dbb0b847a16</Id>
  <LatestVersion>
    <ConversionStatus>sample string 6</ConversionStatus>
    <CreationDateUTC>2025-12-21T07:54:29.8629661+00:00</CreationDateUTC>
    <Description>sample string 2</Description>
    <LocalPath>sample string 3</LocalPath>
    <Version>1</Version>
    <ViewableUrn>sample string 4</ViewableUrn>
    <ViewableUrnBase64>sample string 5</ViewableUrnBase64>
    <XDataJSON />
  </LatestVersion>
  <Name>sample string 3</Name>
  <ProjectId>sample string 1</ProjectId>
  <Region>sample string 7</Region>
  <State>sample string 5</State>
  <StorageType>sample string 6</StorageType>
  <VersionCount>4</VersionCount>
</Model3dMaster>