GET ARAsset/GetARAssetByID/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ARAsset
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

IsVideoEncoded

boolean

None.

IsVideoTrimmed

boolean

None.

IsPortraitVideo

boolean

None.

IsKeepLowResolutionVideo

boolean

None.

PublishedVideoURL

string

None.

OriginalAssetURL

string

None.

VideoThumbnailURL

string

None.

CreatedDateUTC

date

None.

ModifiedDateUTC

date

None.

VideoStatus

integer

None.

IsTemp

boolean

None.

ErrorText

string

None.

ARVideoUploadStatus

ARVideoUploadStatus

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "Id": "a2b64c7a-8e98-4e7b-a9c7-f05889477d5e",
  "IsVideoEncoded": true,
  "IsVideoTrimmed": true,
  "IsPortraitVideo": true,
  "IsKeepLowResolutionVideo": true,
  "PublishedVideoURL": "sample string 6",
  "OriginalAssetURL": "sample string 7",
  "VideoThumbnailURL": "sample string 8",
  "CreatedDateUTC": "2025-08-30T18:26:11.6144722+00:00",
  "ModifiedDateUTC": "2025-08-30T18:26:11.6144722+00:00",
  "VideoStatus": 11,
  "IsTemp": true,
  "ErrorText": "sample string 13",
  "ARVideoUploadStatus": 0
}

application/xml, text/xml

Sample:
<ARAsset xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tervis.Customyzer.Services.Web.API.Models">
  <ARVideoUploadStatus>NONE</ARVideoUploadStatus>
  <CreatedDateUTC>2025-08-30T18:26:11.6144722+00:00</CreatedDateUTC>
  <ErrorText>sample string 13</ErrorText>
  <Id>a2b64c7a-8e98-4e7b-a9c7-f05889477d5e</Id>
  <IsKeepLowResolutionVideo>true</IsKeepLowResolutionVideo>
  <IsPortraitVideo>true</IsPortraitVideo>
  <IsTemp>true</IsTemp>
  <IsVideoEncoded>true</IsVideoEncoded>
  <IsVideoTrimmed>true</IsVideoTrimmed>
  <ModifiedDateUTC>2025-08-30T18:26:11.6144722+00:00</ModifiedDateUTC>
  <OriginalAssetURL>sample string 7</OriginalAssetURL>
  <PublishedVideoURL>sample string 6</PublishedVideoURL>
  <VideoStatus>11</VideoStatus>
  <VideoThumbnailURL>sample string 8</VideoThumbnailURL>
</ARAsset>