| Requires any of the roles: | Admin, TeamAdmin, MobileApp | Required permission: | Tickets.Add |
| POST | /Locations |
|---|
import Foundation
import ServiceStack
public class LocationsSearchRequest : Codable
{
public var name:String?
public var countryCode:String?
required public init(){}
}
public class LocationsResult : Codable
{
public var items:[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(){}
}
Swift LocationsSearchRequest 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.
POST /Locations HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
name: String,
countryCode: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
items:
[
{
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
}