DigiOffice Gateway Web Services

<back to all web services

FileExists

Requires Authentication
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class FileExists
    {
        public String Url = null;
        
        public String getUrl() { return Url; }
        public FileExists setUrl(String value) { this.Url = value; return this; }
    }

    public static class FileExistsResponse
    {
        public Boolean Exists = null;
        public String Url = null;
        public UUID FileID = null;
        public UUID DocumentID = null;
        public Integer DocumentQueuedForRegistrationID = null;
        
        public Boolean isExists() { return Exists; }
        public FileExistsResponse setExists(Boolean value) { this.Exists = value; return this; }
        public String getUrl() { return Url; }
        public FileExistsResponse setUrl(String value) { this.Url = value; return this; }
        public UUID getFileID() { return FileID; }
        public FileExistsResponse setFileID(UUID value) { this.FileID = value; return this; }
        public UUID getDocumentID() { return DocumentID; }
        public FileExistsResponse setDocumentID(UUID value) { this.DocumentID = value; return this; }
        public Integer getDocumentQueuedForRegistrationID() { return DocumentQueuedForRegistrationID; }
        public FileExistsResponse setDocumentQueuedForRegistrationID(Integer value) { this.DocumentQueuedForRegistrationID = value; return this; }
    }

}

Java FileExists 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.

POST /csv/reply/FileExists HTTP/1.1 
Host: digiofficeapigateway.deltares.nl 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"Url":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Exists":false,"Url":"String","FileID":"00000000-0000-0000-0000-000000000000","DocumentID":"00000000-0000-0000-0000-000000000000","DocumentQueuedForRegistrationID":0}