| Requires any of the roles: | Admin, TeamAdmin, MobileApp | Required permission: | Tickets.Add |
| PUT | /Location |
|---|
import Foundation
import ServiceStack
public class LocationUpdateRequest : Codable
{
public var item:Location?
required public init(){}
}
public class Location : Codable
{
public var id:Int?
public var name:String?
public var latitude:Double?
public var longitude:Double?
public var addressName:String?
public var addressLine:String?
public var zip:String?
public var city:String?
public var county:String?
public var stateCode:String?
public var stateName:String?
public var countryCode:String?
public var countryName:String?
public var timeZone:String?
required public init(){}
}
public class LocationResult : Codable
{
public var item:Location?
public var statusCode:Int?
public var message:String?
required public init(){}
}
Swift LocationUpdateRequest 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.
PUT /Location HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
item:
{
id: 0,
name: String,
latitude: 0,
longitude: 0,
addressName: String,
addressLine: String,
zip: String,
city: String,
county: String,
stateCode: String,
stateName: String,
countryCode: String,
countryName: String,
timeZone: String
}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
item:
{
id: 0,
name: String,
latitude: 0,
longitude: 0,
addressName: String,
addressLine: String,
zip: String,
city: String,
county: String,
stateCode: String,
stateName: String,
countryCode: String,
countryName: String,
timeZone: String
},
statusCode: 0,
message: String
}