| Requires the role: | Admin | Requires the permission: | ReadData |
| POST | /borgunTest3D/Finish3DProcessShortVersion | Test 3D |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BorgunPaymentMethodInfo:
payment_type: Optional[str] = None
pan: Optional[str] = None
token: Optional[str] = None
card_type: Optional[str] = None
is_debit: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Borgun3DSecureInfo:
security_level_ind: Optional[str] = None
xid: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BorgunFinal3DResponse:
transaction_id: Optional[str] = None
transaction_type: Optional[str] = None
amount: Optional[int] = None
currency: Optional[str] = None
transaction_date: Optional[datetime.datetime] = None
oorder_id: Optional[str] = None
auth_code: Optional[str] = None
action_code: Optional[str] = None
transaction_status: Optional[str] = None
payment_method: Optional[BorgunPaymentMethodInfo] = None
three_d_secure: Optional[Borgun3DSecureInfo] = None
life_cycle_id: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BorgunTest3DFinishProcessResponse:
response: Optional[BorgunFinal3DResponse] = None
status_code: Optional[int] = None
message: Optional[str] = None
forced_path: Optional[str] = None
forced_j_s_o_n_request: Optional[str] = None
json_request: Optional[str] = None
json_response: Optional[str] = None
request_path: Optional[str] = None
request_sent: Optional[str] = None
request_received: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Borgun3DFinalRequestShortVersion:
amount: Optional[int] = None
mpi_token: Optional[str] = None
order_id: Optional[str] = None
token: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BorgunTest3DFinishProcessRequestShortVersion:
request: Optional[Borgun3DFinalRequestShortVersion] = None
forced_path: Optional[str] = None
forced_j_s_o_n_request: Optional[str] = None
skip_borgun_call: Optional[bool] = None
Python BorgunTest3DFinishProcessRequestShortVersion DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /borgunTest3D/Finish3DProcessShortVersion HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<BorgunTest3DFinishProcessRequestShortVersion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<ForcedJSONRequest>String</ForcedJSONRequest>
<ForcedPath>String</ForcedPath>
<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>
<SkipBorgunCall>false</SkipBorgunCall>
</BorgunTest3DFinishProcessRequestShortVersion>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<BorgunTest3DFinishProcessResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
<ForcedJSONRequest>String</ForcedJSONRequest>
<ForcedPath>String</ForcedPath>
<JSONRequest>String</JSONRequest>
<JSONResponse>String</JSONResponse>
<Message>String</Message>
<RequestPath>String</RequestPath>
<RequestReceived>String</RequestReceived>
<RequestSent>String</RequestSent>
<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>
<StatusCode>0</StatusCode>
</BorgunTest3DFinishProcessResponse>