DigiOffice Gateway Web Services

<back to all web services

GetProjectDetails

Requires Authentication
The following routes are available for this service:
GET/api/projects/{ID}
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 GetProjectDetails
            Public Overridable Property ID As Integer
        End Class
    End Namespace
End Namespace

VB.NET GetProjectDetails DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

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: digiofficeapigateway.deltares.nl 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
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"}