| 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 .other suffix or ?format=other
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/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ID":0,"GlobalID":"00000000-0000-0000-0000-000000000000","Number":"String","Name":"String","Description1":"String","Description2":"String","Active":false,"CorrespondenceInternalCompanyID":0,"CorrespondenceInternalCompanyName":"String","CorrespondenceInternalCompanyGlobalID":"00000000-0000-0000-0000-000000000000","Postalcode":"String","City":"String","CountryID":0,"CountryGlobalID":"00000000-0000-0000-0000-000000000000","CountryName":"String","GeoLocation":"String","AddressComplete":"String","CategoryID":0,"CategoryDescription":"String","CategoryGlobalID":"00000000-0000-0000-0000-000000000000"}