TicketUserServices

<back to all web services

BorgunServices3DFinishProcessRequestShortVersion

Requires Authentication
Requires the role:AdminRequires the permission:ReadData
The following routes are available for this service:
POST/borgunServices/Finish3DProcessShortVersionTest 3D
import Foundation
import ServiceStack

public class BorgunServices3DFinishProcessRequestShortVersion : Codable
{
    public var request:Borgun3DFinalRequestShortVersion?

    required public init(){}
}

public class Borgun3DFinalRequestShortVersion : Codable
{
    public var amount:Int?
    public var mpiToken:String?
    public var orderId:String?
    public var token:String?

    required public init(){}
}

public class BorgunServices3DFinishProcessResponse : Codable
{
    public var response:BorgunFinal3DResponse?
    public var success:Bool?
    public var httpStatusCode:Int?
    public var message:String?

    required public init(){}
}

public class BorgunFinal3DResponse : Codable
{
    public var transactionId:String?
    public var transactionType:String?
    public var amount:Int?
    public var currency:String?
    public var transactionDate:Date?
    public var oorderId:String?
    public var authCode:String?
    public var actionCode:String?
    public var transactionStatus:String?
    public var paymentMethod:BorgunPaymentMethodInfo?
    public var threeDSecure:Borgun3DSecureInfo?
    public var lifeCycleId:String?

    required public init(){}
}

public class BorgunPaymentMethodInfo : Codable
{
    public var paymentType:String?
    public var pan:String?
    public var token:String?
    public var cardType:String?
    public var isDebit:String?

    required public init(){}
}

public class Borgun3DSecureInfo : Codable
{
    public var securityLevelInd:String?
    public var xid:String?

    required public init(){}
}


Swift BorgunServices3DFinishProcessRequestShortVersion DTOs

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

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /borgunServices/Finish3DProcessShortVersion HTTP/1.1 
Host: stubbur-autoupdates-live.smartnewapis.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<BorgunServices3DFinishProcessRequestShortVersion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
  <Request xmlns:d2p1="http://schemas.datacontract.org/2004/07/BorgunRPGData">
    <d2p1:Amount>0</d2p1:Amount>
    <d2p1:MpiToken>String</d2p1:MpiToken>
    <d2p1:OrderId>String</d2p1:OrderId>
    <d2p1:Token>String</d2p1:Token>
  </Request>
</BorgunServices3DFinishProcessRequestShortVersion>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<BorgunServices3DFinishProcessResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
  <HttpStatusCode>0</HttpStatusCode>
  <Message>String</Message>
  <Response xmlns:d2p1="http://schemas.datacontract.org/2004/07/BorgunRPGData">
    <d2p1:ActionCode>String</d2p1:ActionCode>
    <d2p1:Amount>0</d2p1:Amount>
    <d2p1:AuthCode>String</d2p1:AuthCode>
    <d2p1:Currency>String</d2p1:Currency>
    <d2p1:LifeCycleId>String</d2p1:LifeCycleId>
    <d2p1:OorderId>String</d2p1:OorderId>
    <d2p1:PaymentMethod>
      <d2p1:CardType>String</d2p1:CardType>
      <d2p1:IsDebit>String</d2p1:IsDebit>
      <d2p1:PAN>String</d2p1:PAN>
      <d2p1:PaymentType>String</d2p1:PaymentType>
      <d2p1:Token>String</d2p1:Token>
    </d2p1:PaymentMethod>
    <d2p1:ThreeDSecure>
      <d2p1:SecurityLevelInd>String</d2p1:SecurityLevelInd>
      <d2p1:Xid>String</d2p1:Xid>
    </d2p1:ThreeDSecure>
    <d2p1:TransactionDate>0001-01-01T00:00:00</d2p1:TransactionDate>
    <d2p1:TransactionId>String</d2p1:TransactionId>
    <d2p1:TransactionStatus>String</d2p1:TransactionStatus>
    <d2p1:TransactionType>String</d2p1:TransactionType>
  </Response>
  <Success>false</Success>
</BorgunServices3DFinishProcessResponse>