GET v1/assetlogs/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AssetLogResource| Name | Description | Type | Additional information |
|---|---|---|---|
| AssetLog | AssetLogDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"assetLog": {
"id": 1,
"timeStamp": "2025-10-31T23:39:50.4243459-04:00",
"asset": 3,
"messageType": "discovered",
"sourceDeleted": true,
"sourceStore": 1,
"destinationDeleted": true,
"destinationStore": 1,
"workflow": 1
}
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<AssetLog>
<Asset>3</Asset>
<DestinationDeleted>true</DestinationDeleted>
<DestinationStore>1</DestinationStore>
<Id>1</Id>
<MessageType>Discovered</MessageType>
<SourceDeleted>true</SourceDeleted>
<SourceStore>1</SourceStore>
<TimeStamp>2025-10-31T23:39:50.4243459-04:00</TimeStamp>
<Workflow>1</Workflow>
</AssetLog>
</Resources>