DigiOffice Gateway Web Services

<back to all web services

AddBlobFile

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

public class dtos
{

    @DataContract
    public static class AddBlobFile
    {
        @DataMember
        public String FileName = null;

        @DataMember
        public String Type = null;

        @DataMember
        public byte[] Image = null;

        @DataMember
        public String ExternalID = null;
        
        public String getFileName() { return FileName; }
        public AddBlobFile setFileName(String value) { this.FileName = value; return this; }
        public String getType() { return Type; }
        public AddBlobFile setType(String value) { this.Type = value; return this; }
        public byte[] getImage() { return Image; }
        public AddBlobFile setImage(byte[] value) { this.Image = value; return this; }
        public String getExternalID() { return ExternalID; }
        public AddBlobFile setExternalID(String value) { this.ExternalID = value; return this; }
    }

    public static class AddBlobFileResponse
    {
        public UUID BlobFileID = null;
        
        public UUID getBlobFileID() { return BlobFileID; }
        public AddBlobFileResponse setBlobFileID(UUID value) { this.BlobFileID = value; return this; }
    }

}

Java AddBlobFile DTOs

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

HTTP + JSV

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

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

{
	FileName: String,
	Type: String,
	Image: AA==,
	ExternalID: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	
}