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 .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

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

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

{"BlobFileID":"00000000-0000-0000-0000-000000000000"}