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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using TicketUserServices.ServiceModel;
using BorgunRPGData;

namespace BorgunRPGData
{
    public partial class BorgunResValidationRequest
    {
        public virtual string PaRes { get; set; }
        public virtual string CRes { get; set; }
        public virtual string MD { get; set; }
    }

    public partial class BorgunResValidationResponse
    {
        public virtual string XId { get; set; }
        public virtual string MdStatus { get; set; }
        public virtual string MdErrorMessage { get; set; }
        public virtual string EnrollmentStatus { get; set; }
        public virtual string AuthenticationStatus { get; set; }
        public virtual string ECI { get; set; }
        public virtual string CAVV { get; set; }
        public virtual string CAVVAlgorithm { get; set; }
        public virtual string PAResVerified { get; set; }
        public virtual string PAResSyntaxOK { get; set; }
    }

}

namespace TicketUserServices.ServiceModel
{
    public partial class BorgunServices3DVerificationRequest
    {
        public virtual BorgunResValidationRequest Request { get; set; }
    }

    public partial class BorgunServices3DVerificationResponse
    {
        public virtual BorgunResValidationResponse Response { get; set; }
        public virtual bool Success { get; set; }
        public virtual int HttpStatusCode { get; set; }
        public virtual string Message { get; set; }
    }

}

C# BorgunServices3DVerificationRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

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/csv
Content-Type: text/csv
Content-Length: length

{"request":{"paRes":"String","cRes":"String","md":"String"}}
HTTP/1.1 200 OK
Content-Type: text/csv
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"}