GetTransaction
- Method
- Example Request
- Example Response
GetTransaction(GetTransactionRequest)
The purpose of this operation is to retrieve information about a specific transaction.
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| GetTransactionRequest | request |
Returns
| TYPE | DESCRIPTION |
|---|---|
| GetTransactionResponse |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pv="https://ssl.selectpayment.com/PV">
<soapenv:Header>
<pv:SecurityHeader>
<pv:BinarySecurityToken>your security token here</pv:BinarySecurityToken>
</pv:SecurityHeader>
</soapenv:Header>
<soapenv:Body>
<pv:GetTransaction>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:entityId>12345</pv:entityId>
<pv:transactionReferenceNumber>your transaction number here</pv:transactionReferenceNumber>
</pv:GetTransaction>
</soapenv:Body>
</soapenv:Envelope>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetTransactionResponse xmlns="https://ssl.selectpayment.com/PV">
<GetTransactionResult>
<EntityId>12345</EntityId>
<LocationId>102030</LocationId>
<PaymentOrigin>Internet</PaymentOrigin>
<AccountType>Checking</AccountType>
<OperationType>Sale</OperationType>
<SettlementType>ACH</SettlementType>
<TransactionStatus>Approved</TransactionStatus>
<SettlementStatus>To_Be_Originated</SettlementStatus>
<EffectiveDate>2010-12-30T00:00:00.0000000-06:00</EffectiveDate>
<Description/>
<TotalAmount>101.01</TotalAmount>
<TaxAmount>0</TaxAmount>
<ShippingAmount>0</ShippingAmount>
<BatchNumber>123</BatchNumber>
<TerminalNumber>__WebService</TerminalNumber>
<TransactionNumber>111</TransactionNumber>
<Field1></Field1>
<Field2></Field2>
<RoutingNumber>111222233</RoutingNumber>
<AccountNumber>XXXXXX5567</AccountNumber>
<CheckNumber></CheckNumber>
<CardExpiresMonth>0</CardExpiresMonth>
<CardExpiresYear>0</CardExpiresYear>
<CVVNumber>0</CVVNumber>
<IsBusinessPayment>false</IsBusinessPayment>
<NameOnAccount>Sam Shultz</NameOnAccount>
<BillingAddress1>2 Smoking Place </BillingAddress1>
<BillingAddress2/>
<BillingCity>Dallas</BillingCity>
<BillingStateRegion>TX</BillingStateRegion>
<BillingPostalCode>12345</BillingPostalCode>
<BillingCountry>USA</BillingCountry>
<BillingPhone>123-123-1234</BillingPhone>
<IpAddressOfOriginator/>
<EmailAddress>sam@samscigars.com</EmailAddress>
<SSN/>
<DLState>TX</DLState>
<DLNumber>26365987</DLNumber>
<NotificationMethod>Merchant_Notify</NotificationMethod>
<FaceFeeType></FaceFeeType>
<PresentmentNumber></PresentmentNumber>
</GetTransactionResult>
</GetTransactionResponse>
</soap:Body>
</soap:Envelope>