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
namespace Mercedes.OS.Vehicle.Shared.POCO

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type VehicleAuditDetails() = 
        member val UserId:String = null with get,set
        member val Status:Boolean = new Boolean() with get,set
        member val Notes:String = null with get,set
        member val CreationDate:String = null with get,set

    [<AllowNullLiteral>]
    type VehicleSecuredAuditDetails() = 
        inherit VehicleAuditDetails()
        member val Vin:String = null with get,set
        member val CommissionNumber:String = null with get,set
        member val IsBulkUpdate:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type SecuredVehicleAuditResponse() = 
        member val VehicleSecuredAudits:ResizeArray<VehicleSecuredAuditDetails> = null with get,set

    [<AllowNullLiteral>]
    type SecuredVehicleAuditRequest() = 
        interface IGet
        member val Identifier:String = null with get,set

F# 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"}]}