GET api/services/import/v1/detail?id={id}&showAllLogs={showAllLogs}&importJobType={importJobType}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
showAllLogs | boolean |
Required |
|
importJobType | ImportJobType |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DetailDataName | Description | Type | Additional information |
---|---|---|---|
ImportJobId | integer |
None. |
|
Timestamp | date |
None. |
|
MessageType | string |
None. |
|
SourceClassName | string |
None. |
|
Message | string |
None. |
|
Exception | string |
None. |
|
ImportJobState | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ImportJobId": 1, "Timestamp": "2024-12-21T08:42:56.5751214+01:00", "MessageType": "sample string 2", "SourceClassName": "sample string 3", "Message": "sample string 4", "Exception": "sample string 5", "ImportJobState": "sample string 6" }, { "ImportJobId": 1, "Timestamp": "2024-12-21T08:42:56.5751214+01:00", "MessageType": "sample string 2", "SourceClassName": "sample string 3", "Message": "sample string 4", "Exception": "sample string 5", "ImportJobState": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfDetailData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Andritz.AES.SPC.ImportTool.DataModels.WebApi"> <DetailData> <Exception>sample string 5</Exception> <ImportJobId>1</ImportJobId> <ImportJobState>sample string 6</ImportJobState> <Message>sample string 4</Message> <MessageType>sample string 2</MessageType> <SourceClassName>sample string 3</SourceClassName> <Timestamp>2024-12-21T08:42:56.5751214+01:00</Timestamp> </DetailData> <DetailData> <Exception>sample string 5</Exception> <ImportJobId>1</ImportJobId> <ImportJobState>sample string 6</ImportJobState> <Message>sample string 4</Message> <MessageType>sample string 2</MessageType> <SourceClassName>sample string 3</SourceClassName> <Timestamp>2024-12-21T08:42:56.5751214+01:00</Timestamp> </DetailData> </ArrayOfDetailData>