| GET | /v1/GetDataProcess/{ProcessId} |
|---|
"use strict";
export class DataProcessJob {
/** @param {{id?:number,gasId?:string,dateCreated?:string,processedRecords?:number,status?:number,statusName?:string,fileName?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
gasId;
/** @type {string} */
dateCreated;
/** @type {number} */
processedRecords;
/** @type {number} */
status;
/** @type {string} */
statusName;
/** @type {string} */
fileName;
}
export class DataProcessLog {
/** @param {{id?:number,dataProcess_Id?:number,rowNumber?:number,failureReasonId?:number,failureReason?:string,metaData?:string,metaData2?:string,hasFailed?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
dataProcess_Id;
/** @type {number} */
rowNumber;
/** @type {number} */
failureReasonId;
/** @type {string} */
failureReason;
/** @type {string} */
metaData;
/** @type {string} */
metaData2;
/** @type {boolean} */
hasFailed;
}
export class CurrentDataProcessResponse extends DataProcessJob {
/** @param {{type?:number,totalRecords?:number,originalFileName?:string,dateStarted?:string,dateFinished?:string,dataProcessResultLogs?:DataProcessLog[],failedCount?:number,successCount?:number,id?:number,gasId?:string,dateCreated?:string,processedRecords?:number,status?:number,statusName?:string,fileName?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
type;
/** @type {number} */
totalRecords;
/** @type {string} */
originalFileName;
/** @type {string} */
dateStarted;
/** @type {string} */
dateFinished;
/** @type {DataProcessLog[]} */
dataProcessResultLogs = [];
/** @type {number} */
failedCount;
/** @type {number} */
successCount;
}
export class GetDataProcessRequest {
/** @param {{processId?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
processId;
}
JavaScript GetDataProcessRequest DTOs
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>