Mercedes.VehicleManagement.API

<back to all web services

SecuredVehicleAuditRequest

SecuredAudit
Requires Authentication
The following routes are available for this service:
GET/v1/SecuredAudit/{identifier}Gets vehicle secured audits for supplied identifierGets vehicle secured audits for supplied identifier
"use strict";
export class VehicleAuditDetails {
    /** @param {{userId?:string,status?:boolean,notes?:string,creationDate?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {?string} */
    userId;
    /** @type {boolean} */
    status;
    /** @type {?string} */
    notes;
    /** @type {?string} */
    creationDate;
}
export class VehicleSecuredAuditDetails extends VehicleAuditDetails {
    /** @param {{vin?:string,commissionNumber?:string,isBulkUpdate?:boolean,userId?:string,status?:boolean,notes?:string,creationDate?:string}} [init] */
    constructor(init) { super(init); Object.assign(this, init) }
    /** @type {?string} */
    vin;
    /** @type {?string} */
    commissionNumber;
    /** @type {boolean} */
    isBulkUpdate;
}
export class SecuredVehicleAuditResponse {
    /** @param {{vehicleSecuredAudits?:VehicleSecuredAuditDetails[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {?VehicleSecuredAuditDetails[]} */
    vehicleSecuredAudits;
}
export class SecuredVehicleAuditRequest {
    /** @param {{identifier?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {?string} */
    identifier;
}

JavaScript SecuredVehicleAuditRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /v1/SecuredAudit/{identifier} HTTP/1.1 
Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"vehicleSecuredAudits":[{"vin":"String","commissionNumber":"String","isBulkUpdate":false,"userId":"String","status":false,"notes":"String","creationDate":"String"}]}