POST api/Transactions/IsCentinelBypass
Request Information
URI Parameters
None.
Body Parameters
IsCentinnaBypassRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CardNumber | string |
None. |
|
| TransactionType | TransactionType |
None. |
|
| PurchaseAmount | decimal number |
None. |
|
| DestinationCountry | integer |
None. |
|
| PaymentMethod | PaymentMethod |
None. |
Request Formats
application/json, text/json
Sample:
{
"CardNumber": "sample string 1",
"TransactionType": 1,
"PurchaseAmount": 2.0,
"DestinationCountry": 3,
"PaymentMethod": 1
}
application/xml, text/xml
Sample:
<IsCentinnaBypassRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Transactions"> <CardNumber>sample string 1</CardNumber> <DestinationCountry>3</DestinationCountry> <PurchaseAmount>2</PurchaseAmount> <TransactionType>R</TransactionType> </IsCentinnaBypassRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>