POST api/ValidateTransaction/AddTransactionState

Request Information

URI Parameters

None.

Body Parameters

TransactionStatusRequest
NameDescriptionTypeAdditional information
TransactionKey

string

None.

AspNetShoppingCart

string

None.

OrderType

string

None.

shipmentinfo

string

None.

CardBuyProduct

string

None.

CardBuyProductShipment

string

None.

CardList

string

None.

TransactionDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TransactionKey": "sample string 1",
  "AspNetShoppingCart": "sample string 2",
  "OrderType": "sample string 3",
  "shipmentinfo": "sample string 4",
  "CardBuyProduct": "sample string 5",
  "CardBuyProductShipment": "sample string 6",
  "CardList": "sample string 7",
  "TransactionDate": "sample string 8"
}

application/xml, text/xml

Sample:
<ValidateTransactionController.TransactionStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomerAPI.Controllers">
  <AspNetShoppingCart>sample string 2</AspNetShoppingCart>
  <CardBuyProduct>sample string 5</CardBuyProduct>
  <CardBuyProductShipment>sample string 6</CardBuyProductShipment>
  <CardList>sample string 7</CardList>
  <OrderType>sample string 3</OrderType>
  <TransactionDate>sample string 8</TransactionDate>
  <TransactionKey>sample string 1</TransactionKey>
  <shipmentinfo>sample string 4</shipmentinfo>
</ValidateTransactionController.TransactionStatusRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>