| GET | /api/projects/{ID} |
|---|
import Foundation
import ServiceStack
public class GetProjectDetails : Codable
{
public var id:Int
required public init(){}
}
public class ProjectDetails : Codable
{
public var id:Int
public var globalID:String
public var number:String
public var name:String
public var description1:String
public var description2:String
public var active:Bool
public var correspondenceInternalCompanyID:Int
public var correspondenceInternalCompanyName:String
public var correspondenceInternalCompanyGlobalID:String
public var postalcode:String
public var city:String
public var countryID:Int
public var countryGlobalID:String
public var countryName:String
public var geoLocation:String
public var addressComplete:String
public var categoryID:Int
public var categoryDescription:String
public var categoryGlobalID: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 /api/projects/{ID} HTTP/1.1
Host: doapigw.baasbv.nl
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ID: 0,
Number: String,
Name: String,
Description1: String,
Description2: String,
Active: False,
CorrespondenceInternalCompanyID: 0,
CorrespondenceInternalCompanyName: String,
Postalcode: String,
City: String,
CountryID: 0,
CountryName: String,
GeoLocation: String,
AddressComplete: String,
CategoryID: 0,
CategoryDescription: String
}