GET | /v1/GetDataProcess/{ProcessId} |
---|
"use strict";
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 {
/** @param {{id?:number,type?:number,status?:number,statusName?:string,totalRecords?:number,processedRecords?:number,fileName?:string,originalFileName?:string,dateCreated?:string,dateStarted?:string,dateFinished?:string,gasId?:string,dataProcessResultLogs?:DataProcessLog[],failedCount?:number,successCount?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
type;
/** @type {number} */
status;
/** @type {string} */
statusName;
/** @type {number} */
totalRecords;
/** @type {number} */
processedRecords;
/** @type {string} */
fileName;
/** @type {string} */
originalFileName;
/** @type {string} */
dateCreated;
/** @type {string} */
dateStarted;
/** @type {string} */
dateFinished;
/** @type {string} */
gasId;
/** @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.VehicleManagement.API.Shared.POCO.DataProcess"> <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> <DateCreated>String</DateCreated> <DateFinished>String</DateFinished> <DateStarted>String</DateStarted> <FailedCount>0</FailedCount> <FileName>String</FileName> <GasId>String</GasId> <Id>0</Id> <OriginalFileName>String</OriginalFileName> <ProcessedRecords>0</ProcessedRecords> <Status>0</Status> <StatusName>String</StatusName> <SuccessCount>0</SuccessCount> <TotalRecords>0</TotalRecords> <Type>0</Type> </CurrentDataProcessResponse>