| GET | /v1/GetDataProcess/{ProcessId} |
|---|
namespace Mercedes.OS.Vehicle.Shared.POCO
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type DataProcessJob() =
member val Id:Int32 = new Int32() with get,set
member val GasId:String = null with get,set
member val DateCreated:String = null with get,set
member val ProcessedRecords:Int32 = new Int32() with get,set
member val Status:Int32 = new Int32() with get,set
member val StatusName:String = null with get,set
member val FileName:String = null with get,set
[<AllowNullLiteral>]
type DataProcessLog() =
member val Id:Int32 = new Int32() with get,set
member val DataProcess_Id:Int32 = new Int32() with get,set
member val RowNumber:Int32 = new Int32() with get,set
member val FailureReasonId:Int32 = new Int32() with get,set
member val FailureReason:String = null with get,set
member val MetaData:String = null with get,set
member val MetaData2:String = null with get,set
member val HasFailed:Boolean = new Boolean() with get,set
[<AllowNullLiteral>]
type CurrentDataProcessResponse() =
inherit DataProcessJob()
member val Type:Int32 = new Int32() with get,set
member val TotalRecords:Int32 = new Int32() with get,set
member val OriginalFileName:String = null with get,set
member val DateStarted:String = null with get,set
member val DateFinished:String = null with get,set
member val DataProcessResultLogs:ResizeArray<DataProcessLog> = null with get,set
member val FailedCount:Int32 = new Int32() with get,set
member val SuccessCount:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type GetDataProcessRequest() =
interface IGet
member val ProcessId:Int32 = new Int32() with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/GetDataProcess/{ProcessId} HTTP/1.1
Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<CurrentDataProcessResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mercedes.OS.Vehicle.Shared.POCO">
<DateCreated>String</DateCreated>
<FileName>String</FileName>
<GasId>String</GasId>
<Id>0</Id>
<ProcessedRecords>0</ProcessedRecords>
<Status>0</Status>
<StatusName>String</StatusName>
<DataProcessResultLogs>
<DataProcessLog>
<DataProcess_Id>0</DataProcess_Id>
<FailureReason>String</FailureReason>
<FailureReasonId>0</FailureReasonId>
<HasFailed>false</HasFailed>
<Id>0</Id>
<MetaData>String</MetaData>
<MetaData2>String</MetaData2>
<RowNumber>0</RowNumber>
</DataProcessLog>
</DataProcessResultLogs>
<DateFinished>String</DateFinished>
<DateStarted>String</DateStarted>
<FailedCount>0</FailedCount>
<OriginalFileName>String</OriginalFileName>
<SuccessCount>0</SuccessCount>
<TotalRecords>0</TotalRecords>
<Type>0</Type>
</CurrentDataProcessResponse>