GET | /v1/SecuredAudit/{identifier} | Gets vehicle secured audits for supplied identifier | Gets 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 .csv suffix or ?format=csv
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: text/csv
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"vehicleSecuredAudits":[{"vin":"String","commissionNumber":"String","isBulkUpdate":false,"userId":"String","status":false,"notes":"String","creationDate":"String"}]}