GET api/Element/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Element| Name | Description | Type | Additional information |
|---|---|---|---|
| PresentationName | string |
None. |
|
| ShortName | string |
None. |
|
| GroupId | integer |
None. |
|
| TsRefId | integer |
None. |
|
| ElementSourceId | integer |
None. |
|
| OrderId | integer |
None. |
|
| ImageURI | string |
None. |
|
| BridgeId | integer |
None. |
|
| Id | integer |
None. |
|
| UpdatedAt | date |
None. |
|
| MajorVersion | integer |
None. |
|
| MinorVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PresentationName": "sample string 1",
"ShortName": "sample string 2",
"GroupId": 1,
"TsRefId": 1,
"ElementSourceId": 1,
"OrderId": 1,
"ImageURI": "sample string 3",
"BridgeId": 1,
"Id": 4,
"UpdatedAt": "2025-11-08T12:13:01.4833089Z",
"MajorVersion": 1,
"MinorVersion": 1
}
application/xml, text/xml
Sample:
<Element xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Api.DataModels"> <MajorVersion>1</MajorVersion> <MinorVersion>1</MinorVersion> <UpdatedAt>2025-11-08T12:13:01.4833089Z</UpdatedAt> <Id>4</Id> <BridgeId>1</BridgeId> <ElementSourceId>1</ElementSourceId> <GroupId>1</GroupId> <ImageURI>sample string 3</ImageURI> <OrderId>1</OrderId> <PresentationName>sample string 1</PresentationName> <ShortName>sample string 2</ShortName> <TsRefId>1</TsRefId> </Element>