| Requires the role: | Admin | Requires the permission: | ReadData |
| POST | /borgunTest3D/ResVerification | Test 3D |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class BorgunTest3DVerificationRequest
{
var request:BorgunResValidationRequest? = null
var forcedPath:String? = null
var forcedJSONRequest:String? = null
var skipBorgunCall:Boolean? = null
}
open class BorgunResValidationRequest
{
var paRes:String? = null
var cRes:String? = null
var md:String? = null
}
open class BorgunTest3DVerificationResponse
{
var response:BorgunResValidationResponse? = null
var statusCode:Int? = null
var message:String? = null
var forcedPath:String? = null
var forcedJSONRequest:String? = null
var jsonRequest:String? = null
var jsonResponse:String? = null
var requestPath:String? = null
var requestSent:String? = null
var requestReceived:String? = null
}
open class BorgunResValidationResponse
{
var xId:String? = null
var mdStatus:String? = null
var mdErrorMessage:String? = null
var enrollmentStatus:String? = null
var authenticationStatus:String? = null
var eci:String? = null
var cavv:String? = null
var cavvAlgorithm:String? = null
var paResVerified:String? = null
var paResSyntaxOK:String? = null
}
Kotlin 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
}