ImzagerServices

<back to all web services

AddSigner

The following routes are available for this service:
All Verbs/AddSigner/{ClientKey}
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class AddSigner
    {
        public String ClientKey = null;
        public String AuthorizationID = null;
        public String DocumentId = null;
        public String UserName = null;
        public String UserSSN = null;
        public String SignType = null;
        
        public String getClientKey() { return ClientKey; }
        public AddSigner setClientKey(String value) { this.ClientKey = value; return this; }
        public String getAuthorizationID() { return AuthorizationID; }
        public AddSigner setAuthorizationID(String value) { this.AuthorizationID = value; return this; }
        public String getDocumentId() { return DocumentId; }
        public AddSigner setDocumentId(String value) { this.DocumentId = value; return this; }
        public String getUserName() { return UserName; }
        public AddSigner setUserName(String value) { this.UserName = value; return this; }
        public String getUserSSN() { return UserSSN; }
        public AddSigner setUserSSN(String value) { this.UserSSN = value; return this; }
        public String getSignType() { return SignType; }
        public AddSigner setSignType(String value) { this.SignType = value; return this; }
    }

    public static class AddSignerResponse
    {
        public Boolean Result = null;
        public Boolean ServiceSuccessResult = null;
        public String ErrorMesage = null;
        
        public Boolean isResult() { return Result; }
        public AddSignerResponse setResult(Boolean value) { this.Result = value; return this; }
        public Boolean isServiceSuccessResult() { return ServiceSuccessResult; }
        public AddSignerResponse setServiceSuccessResult(Boolean value) { this.ServiceSuccessResult = value; return this; }
        public String getErrorMesage() { return ErrorMesage; }
        public AddSignerResponse setErrorMesage(String value) { this.ErrorMesage = value; return this; }
    }

}

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

POST /AddSigner/{ClientKey} HTTP/1.1 
Host: imzagerservices.eyyubiye.bel.tr 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<AddSigner xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaB.Imzager.Services.ServiceModel">
  <AuthorizationID>String</AuthorizationID>
  <ClientKey>String</ClientKey>
  <DocumentId>String</DocumentId>
  <SignType>String</SignType>
  <UserName>String</UserName>
  <UserSSN>String</UserSSN>
</AddSigner>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<AddSignerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaB.Imzager.Services.ServiceModel">
  <ErrorMesage>String</ErrorMesage>
  <Result>false</Result>
  <ServiceSuccessResult>false</ServiceSuccessResult>
</AddSignerResponse>