| GET | /api/global/projects/{GlobalID} | 
|---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports IDB.API.DTO.Project.Operations
Imports IDB.API.DTO.Project
Namespace Global
    Namespace IDB.API.DTO.Project
        Public Partial Class ProjectDetails
            Public Overridable Property ID As Integer
            Public Overridable Property GlobalID As Guid
            Public Overridable Property Number As String
            Public Overridable Property Name As String
            Public Overridable Property Description1 As String
            Public Overridable Property Description2 As String
            Public Overridable Property Active As Boolean
            Public Overridable Property CorrespondenceInternalCompanyID As Integer
            Public Overridable Property CorrespondenceInternalCompanyName As String
            Public Overridable Property CorrespondenceInternalCompanyGlobalID As Guid
            Public Overridable Property Postalcode As String
            Public Overridable Property City As String
            Public Overridable Property CountryID As Integer
            Public Overridable Property CountryGlobalID As Guid
            Public Overridable Property CountryName As String
            Public Overridable Property GeoLocation As String
            Public Overridable Property AddressComplete As String
            Public Overridable Property CategoryID As Integer
            Public Overridable Property CategoryDescription As String
            Public Overridable Property CategoryGlobalID As Guid
        End Class
    End Namespace
    Namespace IDB.API.DTO.Project.Operations
        Public Partial Class GetProjectDetailsByGlobalID
            Public Overridable Property GlobalID As Guid
        End Class
    End Namespace
End Namespace
VB.NET GetProjectDetailsByGlobalID DTOs
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/global/projects/{GlobalID} 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"}