Requires any of the roles: | Admin, TeamAdmin, MobileApp | Required permission: | Tickets.Add |
GET | /Location/{Id} |
---|
import Foundation
import ServiceStack
public class LocationGetRequest : Codable
{
public var id:Int?
required public init(){}
}
public class LocationResult : Codable
{
public var item:Location?
public var statusCode:Int?
public var message:String?
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(){}
}
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 /Location/{Id} HTTP/1.1 Host: stubbur-autoupdates-live.smartnewapis.com Accept: text/jsv
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 }