Mercedes.VehicleManagement.API

<back to all web services

GetDataProcessRequest

Requires Authentication
The following routes are available for this service:
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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	type: 0,
	status: 0,
	statusName: String,
	totalRecords: 0,
	processedRecords: 0,
	fileName: String,
	originalFileName: String,
	dateCreated: String,
	dateStarted: String,
	dateFinished: String,
	gasId: String,
	dataProcessResultLogs: 
	[
		{
			id: 0,
			dataProcess_Id: 0,
			rowNumber: 0,
			failureReasonId: 0,
			failureReason: String,
			metaData: String,
			metaData2: String,
			hasFailed: False
		}
	],
	failedCount: 0,
	successCount: 0
}