GET api/PaymentProcessor/GetTransactionDetails?orderNumber={orderNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderNumber | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderNumber | string |
None. |
|
| Status | string |
None. |
|
| ResponseCode | string |
None. |
|
| paywayResponseCode | string |
None. |
|
| ResponseText | string |
None. |
|
| IsSuccessStatusCode | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"orderNumber": "sample string 1",
"status": "sample string 2",
"responseCode": "sample string 3",
"paywayResponseCode": "sample string 4",
"responseText": "sample string 5",
"isSuccessStatusCode": true
}
application/xml, text/xml
Sample:
<TransactionViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels"> <IsSuccessStatusCode>true</IsSuccessStatusCode> <OrderNumber>sample string 1</OrderNumber> <ResponseCode>sample string 3</ResponseCode> <ResponseText>sample string 5</ResponseText> <Status>sample string 2</Status> <paywayResponseCode>sample string 4</paywayResponseCode> </TransactionViewModel>