DigiOffice Gateway Web Services

<back to all web services

GetDocumentUploads

Requires Authentication
The following routes are available for this service:
GET/api/documentuploads
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;

public class dtos
{

    public static class GetDocumentUploads
    {
        public UUID ViewID = null;
        public Integer PageSize = null;
        public Integer PageNumber = null;
        public String SearchCriteria = null;
        public UUID ExplorerID = null;
        public String Path = null;
        
        public UUID getViewID() { return ViewID; }
        public GetDocumentUploads setViewID(UUID value) { this.ViewID = value; return this; }
        public Integer getPageSize() { return PageSize; }
        public GetDocumentUploads setPageSize(Integer value) { this.PageSize = value; return this; }
        public Integer getPageNumber() { return PageNumber; }
        public GetDocumentUploads setPageNumber(Integer value) { this.PageNumber = value; return this; }
        public String getSearchCriteria() { return SearchCriteria; }
        public GetDocumentUploads setSearchCriteria(String value) { this.SearchCriteria = value; return this; }
        public UUID getExplorerID() { return ExplorerID; }
        public GetDocumentUploads setExplorerID(UUID value) { this.ExplorerID = value; return this; }
        public String getPath() { return Path; }
        public GetDocumentUploads setPath(String value) { this.Path = value; return this; }
    }

}

Java GetDocumentUploads DTOs

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

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /api/documentuploads HTTP/1.1 
Host: digiofficeapigateway.deltares.nl 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ArrayOfDocumentUpload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDB.API.DTO.Document">
  <DocumentUpload>
    <AssignedTo>String</AssignedTo>
    <AssignedToGroup>String</AssignedToGroup>
    <Description>String</Description>
    <Extension>String</Extension>
    <FileDate>0001-01-01T00:00:00</FileDate>
    <FileName>String</FileName>
    <HasPreview>false</HasPreview>
    <ID>0</ID>
    <Notes>String</Notes>
    <UploadedBy>String</UploadedBy>
  </DocumentUpload>
</ArrayOfDocumentUpload>