TicketUserServices

<back to all web services

BorgunServices3DVerificationRequest

Requires Authentication
Requires the role:AdminRequires the permission:ReadData
The following routes are available for this service:
POST/borgunServices/3DResVerificationTest 3D
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class BorgunServices3DVerificationRequest
    {
        public BorgunResValidationRequest request = null;
        
        public BorgunResValidationRequest getRequest() { return request; }
        public BorgunServices3DVerificationRequest setRequest(BorgunResValidationRequest value) { this.request = value; return this; }
    }

    public static class BorgunResValidationRequest
    {
        public String paRes = null;
        public String cRes = null;
        public String md = null;
        
        public String getPaRes() { return paRes; }
        public BorgunResValidationRequest setPaRes(String value) { this.paRes = value; return this; }
        public String getCRes() { return cRes; }
        public BorgunResValidationRequest setCRes(String value) { this.cRes = value; return this; }
        public String getMd() { return md; }
        public BorgunResValidationRequest setMd(String value) { this.md = value; return this; }
    }

    public static class BorgunServices3DVerificationResponse
    {
        public BorgunResValidationResponse response = null;
        public Boolean success = null;
        public Integer httpStatusCode = null;
        public String message = null;
        
        public BorgunResValidationResponse getResponse() { return response; }
        public BorgunServices3DVerificationResponse setResponse(BorgunResValidationResponse value) { this.response = value; return this; }
        public Boolean isSuccess() { return success; }
        public BorgunServices3DVerificationResponse setSuccess(Boolean value) { this.success = value; return this; }
        public Integer getHttpStatusCode() { return httpStatusCode; }
        public BorgunServices3DVerificationResponse setHttpStatusCode(Integer value) { this.httpStatusCode = value; return this; }
        public String getMessage() { return message; }
        public BorgunServices3DVerificationResponse setMessage(String value) { this.message = value; return this; }
    }

    public static class BorgunResValidationResponse
    {
        public String xId = null;
        public String mdStatus = null;
        public String mdErrorMessage = null;
        public String enrollmentStatus = null;
        public String authenticationStatus = null;
        public String eci = null;
        public String cavv = null;
        public String cavvAlgorithm = null;
        public String paResVerified = null;
        public String paResSyntaxOK = null;
        
        public String getXId() { return xId; }
        public BorgunResValidationResponse setXId(String value) { this.xId = value; return this; }
        public String getMdStatus() { return mdStatus; }
        public BorgunResValidationResponse setMdStatus(String value) { this.mdStatus = value; return this; }
        public String getMdErrorMessage() { return mdErrorMessage; }
        public BorgunResValidationResponse setMdErrorMessage(String value) { this.mdErrorMessage = value; return this; }
        public String getEnrollmentStatus() { return enrollmentStatus; }
        public BorgunResValidationResponse setEnrollmentStatus(String value) { this.enrollmentStatus = value; return this; }
        public String getAuthenticationStatus() { return authenticationStatus; }
        public BorgunResValidationResponse setAuthenticationStatus(String value) { this.authenticationStatus = value; return this; }
        public String getEci() { return eci; }
        public BorgunResValidationResponse setEci(String value) { this.eci = value; return this; }
        public String getCavv() { return cavv; }
        public BorgunResValidationResponse setCavv(String value) { this.cavv = value; return this; }
        public String getCavvAlgorithm() { return cavvAlgorithm; }
        public BorgunResValidationResponse setCavvAlgorithm(String value) { this.cavvAlgorithm = value; return this; }
        public String getPaResVerified() { return paResVerified; }
        public BorgunResValidationResponse setPaResVerified(String value) { this.paResVerified = value; return this; }
        public String getPaResSyntaxOK() { return paResSyntaxOK; }
        public BorgunResValidationResponse setPaResSyntaxOK(String value) { this.paResSyntaxOK = value; return this; }
    }

}

Java BorgunServices3DVerificationRequest 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 /borgunServices/3DResVerification HTTP/1.1 
Host: stubbur-autoupdates-live.smartnewapis.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	request: 
	{
		paRes: String,
		cRes: String,
		md: String
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	response: 
	{
		xId: String,
		mdStatus: String,
		mdErrorMessage: String,
		enrollmentStatus: String,
		authenticationStatus: String,
		eci: String,
		cavv: String,
		cavvAlgorithm: String,
		paResVerified: String,
		paResSyntaxOK: String
	},
	success: False,
	httpStatusCode: 0,
	message: String
}