| Requires the role: | Admin | Requires the permission: | ReadData |
| POST | /borgunTest3D/ResVerification | Test 3D |
|---|
export class BorgunResValidationResponse
{
public xId?: string;
public mdStatus?: string;
public mdErrorMessage?: string;
public enrollmentStatus?: string;
public authenticationStatus?: string;
public eci?: string;
public cavv?: string;
public cavvAlgorithm?: string;
public paResVerified?: string;
public paResSyntaxOK?: string;
public constructor(init?: Partial<BorgunResValidationResponse>) { (Object as any).assign(this, init); }
}
export class BorgunTest3DVerificationResponse
{
public response?: BorgunResValidationResponse;
public statusCode?: number;
public message?: string;
public forcedPath?: string;
public forcedJSONRequest?: string;
public jsonRequest?: string;
public jsonResponse?: string;
public requestPath?: string;
public requestSent?: string;
public requestReceived?: string;
public constructor(init?: Partial<BorgunTest3DVerificationResponse>) { (Object as any).assign(this, init); }
}
export class BorgunResValidationRequest
{
public paRes?: string;
public cRes?: string;
public md?: string;
public constructor(init?: Partial<BorgunResValidationRequest>) { (Object as any).assign(this, init); }
}
export class BorgunTest3DVerificationRequest
{
public request?: BorgunResValidationRequest;
public forcedPath?: string;
public forcedJSONRequest?: string;
public skipBorgunCall?: boolean;
public constructor(init?: Partial<BorgunTest3DVerificationRequest>) { (Object as any).assign(this, init); }
}
TypeScript BorgunTest3DVerificationRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /borgunTest3D/ResVerification HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
request:
{
paRes: String,
cRes: String,
md: String
},
forcedPath: String,
forcedJSONRequest: String,
skipBorgunCall: False
}
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
},
statusCode: 0,
message: String,
forcedPath: String,
forcedJSONRequest: String,
jsonRequest: String,
jsonResponse: String,
requestPath: String,
requestSent: String,
requestReceived: String
}