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