POST api/project/{projectId}/model

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

string

Required

Body Parameters

Model3dMasterCreate
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

Required

ProjectId

string

Required

State

string

None.

Description

string

None.

LocalPath

string

None.

ViewableUrn

string

None.

ViewableUrnBase64

string

None.

ConversionStatus

string

None.

CreationDateUTC

date

None.

XDataJSON

Object

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "008b9bdc-bfbb-4f3a-b7e7-ec3afcd4fe80",
  "Name": "sample string 2",
  "ProjectId": "sample string 3",
  "State": "sample string 4",
  "Description": "sample string 5",
  "LocalPath": "sample string 6",
  "ViewableUrn": "sample string 7",
  "ViewableUrnBase64": "sample string 8",
  "ConversionStatus": "sample string 9",
  "CreationDateUTC": "2025-12-21T07:51:13.1818555+00:00",
  "XDataJSON": {}
}

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">
  <ConversionStatus>sample string 9</ConversionStatus>
  <CreationDateUTC>2025-12-21T07:51:13.1818555+00:00</CreationDateUTC>
  <Description>sample string 5</Description>
  <Id>008b9bdc-bfbb-4f3a-b7e7-ec3afcd4fe80</Id>
  <LocalPath>sample string 6</LocalPath>
  <Name>sample string 2</Name>
  <ProjectId>sample string 3</ProjectId>
  <State>sample string 4</State>
  <ViewableUrn>sample string 7</ViewableUrn>
  <ViewableUrnBase64>sample string 8</ViewableUrnBase64>
  <XDataJSON />
</Model3dMaster>

application/x-www-form-urlencoded

Sample:

Sample not available.

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": "caa803e9-032b-42fe-a38f-764bae1f5916",
  "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:51:13.2013284+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>caa803e9-032b-42fe-a38f-764bae1f5916</Id>
  <LatestVersion>
    <ConversionStatus>sample string 6</ConversionStatus>
    <CreationDateUTC>2025-12-21T07:51:13.2013284+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>