Requires the role: | manager |
PUT,PATCH | /cars/{Id}/offline |
---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class OfflineCarRequest : PutPatchOperationTenanted<OfflineCarResponse>()
{
var id:String? = null
var fromUtc:Date? = null
var toUtc:Date? = null
}
open class PutPatchOperationTenanted<TResponse> : PutPatchOperationUnTenanted<TResponse>(), ITenantedRequest
{
var organisationId:String? = null
}
open class PutPatchOperationUnTenanted<TResponse> : IPatch, IPut
{
}
open class OfflineCarResponse
{
var responseStatus:ResponseStatus? = null
var car:Car? = null
}
open class Car : IIdentifiableResource
{
var manufacturer:CarManufacturer? = null
var plate:CarLicensePlate? = null
var owner:CarOwner? = null
var managers:ArrayList<CarManager> = ArrayList<CarManager>()
var status:String? = null
var altered:Boolean? = null
var id:String? = null
}
open class CarManufacturer
{
var year:Int? = null
var make:String? = null
var model:String? = null
}
open class CarLicensePlate
{
var jurisdiction:String? = null
var number:String? = null
}
open class CarOwner
{
var id:String? = null
}
open class CarManager
{
var id:String? = null
}
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.
PUT /cars/{Id}/offline HTTP/1.1
Host: staging-api.billiecart.com.au
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
id: String,
organisationId: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, car: { manufacturer: { year: 0, make: String, model: String }, plate: { jurisdiction: String, number: String }, owner: { id: String }, managers: [ { id: String } ], status: String, altered: False, id: String } }