POST Api/logistics/GetLogs
Request Information
URI Parameters
None.
Body Parameters
GetLogsRequestModelName | Description | Type | Additional information |
---|---|---|---|
SourceId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "SourceId": "sample string 1" }
application/xml, text/xml
Sample:
<GetLogsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models.Logistics"> <SourceId>sample string 1</SourceId> </GetLogsRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of LogEventModelName | Description | Type | Additional information |
---|---|---|---|
LogTypeId | string |
None. |
|
SourceId | string |
None. |
|
Message | string |
None. |
|
LocalLogDateTime | date |
None. |
|
LogDateTime | date |
None. |
|
IpAddress | string |
None. |
|
MachineName | string |
None. |
|
Username | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "LogTypeId": "sample string 1", "SourceId": "sample string 2", "Message": "sample string 3", "LocalLogDateTime": "2025-08-02T15:34:35.2005583+02:00", "LogDateTime": "2025-08-02T15:34:35.2005583+02:00", "IpAddress": "sample string 6", "MachineName": "sample string 7", "Username": "sample string 8" }, { "LogTypeId": "sample string 1", "SourceId": "sample string 2", "Message": "sample string 3", "LocalLogDateTime": "2025-08-02T15:34:35.2005583+02:00", "LogDateTime": "2025-08-02T15:34:35.2005583+02:00", "IpAddress": "sample string 6", "MachineName": "sample string 7", "Username": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfLogEventModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models.Logistics"> <LogEventModel> <IpAddress>sample string 6</IpAddress> <LocalLogDateTime>2025-08-02T15:34:35.2005583+02:00</LocalLogDateTime> <LogDateTime>2025-08-02T15:34:35.2005583+02:00</LogDateTime> <LogTypeId>sample string 1</LogTypeId> <MachineName>sample string 7</MachineName> <Message>sample string 3</Message> <SourceId>sample string 2</SourceId> <Username>sample string 8</Username> </LogEventModel> <LogEventModel> <IpAddress>sample string 6</IpAddress> <LocalLogDateTime>2025-08-02T15:34:35.2005583+02:00</LocalLogDateTime> <LogDateTime>2025-08-02T15:34:35.2005583+02:00</LogDateTime> <LogTypeId>sample string 1</LogTypeId> <MachineName>sample string 7</MachineName> <Message>sample string 3</Message> <SourceId>sample string 2</SourceId> <Username>sample string 8</Username> </LogEventModel> </ArrayOfLogEventModel>