| 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; }
}
}
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
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/json
Content-Type: application/json
Content-Length: length
{"ClientKey":"String","AuthorizationID":"String","DocumentId":"String","UserName":"String","UserSSN":"String","SignType":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Result":false,"ServiceSuccessResult":false,"ErrorMesage":"String"}