Export Transactions from Paypal
The Export transactions task will export all PayPal transactions between the specified Start and End Date to the desired Output File in XML format. The Output Details option instructs the task to export additional transaction details including order item lines where specified.
The Start Date and End Date are updated after the task runs to the current Date Time and the current Date Time plus one day.
Settings
Start Date
Required
Start Date for date range (Defaults to Current Date)
End Date
Required
End Date for date range (Defaults to Current Date + 1 Day
Output Details
Required
Set to True to show all order line details or False to output header details only
Output File
Required
Name of PayPal transaction XML file to be created
PayPal API Environment
Required
Leave blank for Live mode or set to Sandbox or Live
PayPal API Password
Required
Password for PayPal API access
PayPal API Signature
Required
Signature for PayPal API access
PayPal API Username
Required
Username for PayPal API access
Zynk Settings
Sample Output
Headers Only
<?xml version="1.0"?>
<TransactionSearchResponseType>
<Timestamp xmlns="urn:ebay:apis:eBLBaseComponents">2011-03-10T15:10:30Z</Timestamp>
<Ack xmlns="urn:ebay:apis:eBLBaseComponents">Success</Ack>
<CorrelationID xmlns="urn:ebay:apis:eBLBaseComponents">cd4fcc385ff0b</CorrelationID>
<Version xmlns="urn:ebay:apis:eBLBaseComponents">54.0</Version>
<Build xmlns="urn:ebay:apis:eBLBaseComponents">1776465</Build>
<PaymentTransactions xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2009-04-23T12:38:49Z</Timestamp>
<Timezone>GMT</Timezone>
<Type>Payment</Type>
<Payer>[email protected]</Payer>
<PayerDisplayName>Test User</PayerDisplayName>
<TransactionID>7UP42315GN119130H</TransactionID>
<Status>Completed</Status>
<GrossAmount currencyID="GBP">46.27</GrossAmount>
<FeeAmount currencyID="GBP">-2.00</FeeAmount>
<NetAmount currencyID="GBP">44.27</NetAmount>
</PaymentTransactions>
</TransactionSearchResponseType>
```
### Detailed Output
```xml
<?xml version="1.0"?>
<ArrayOfGetTransactionDetailsResponseType>
<GetTransactionDetailsResponseType>
<Timestamp xmlns="urn:ebay:apis:eBLBaseComponents">2011-03-10T15:10:59Z</Timestamp>
<Ack xmlns="urn:ebay:apis:eBLBaseComponents">Success</Ack>
<CorrelationID xmlns="urn:ebay:apis:eBLBaseComponents">e19cdbe5eef48</CorrelationID>
<Version xmlns="urn:ebay:apis:eBLBaseComponents">54.0</Version>
<Build xmlns="urn:ebay:apis:eBLBaseComponents">1776465</Build>
<PaymentTransactionDetails xmlns="urn:ebay:apis:eBLBaseComponents">
<ReceiverInfo>
<Business />
<Receiver>[email protected]</Receiver>
<ReceiverID>NA56ELKJ8K9S2</ReceiverID>
</ReceiverInfo>
<PayerInfo>
<Payer>[email protected]</Payer>
<PayerID>DGX82R296PS38</PayerID>
<PayerStatus>verified</PayerStatus>
<PayerName>
<Salutation />
<FirstName>Test</FirstName>
<MiddleName />
<LastName>User</LastName>
<Suffix />
</PayerName>
<PayerCountry>US</PayerCountry>
<PayerBusiness />
<Address>
<Name>Test User</Name>
<Street1>1 Main St</Street1>
<Street2 />
<CityName>San Jose</CityName>
<StateOrProvince>CA</StateOrProvince>
<Country>US</Country>
<CountryName>United States</CountryName>
<PostalCode>95131</PostalCode>
<AddressOwner>PayPal</AddressOwner>
<AddressStatus>Confirmed</AddressStatus>
</Address>
<ContactPhone />
</PayerInfo>
<PaymentInfo>
<TransactionID>7UP42315GN119130H</TransactionID>
<ParentTransactionID />
<ReceiptID />
<TransactionType>express-checkout</TransactionType>
<PaymentType>instant</PaymentType>
<PaymentDate>2009-04-23T12:38:49Z</PaymentDate>
<GrossAmount currencyID="GBP">46.27</GrossAmount>
<FeeAmount currencyID="GBP">2.00</FeeAmount>
<TaxAmount currencyID="GBP">0.00</TaxAmount>
<ExchangeRate />
<PaymentStatus>Completed</PaymentStatus>
<PendingReason>none</PendingReason>
<ReasonCode>none</ReasonCode>
<ProtectionEligibility>Eligible</ProtectionEligibility>
</PaymentInfo>
<PaymentItemInfo>
<InvoiceID />
<Custom />
<Memo />
<SalesTax>0.00</SalesTax>
<PaymentItem>
<Name />
<Number />
<Quantity>1</Quantity>
<SalesTax>0.00</SalesTax>
</PaymentItem>
<Subscription reattempt="" recurring="">
<SubscriptionID />
<Username />
<Password />
<Recurrences />
</Subscription>
<Auction multiItem="">
<BuyerID />
</Auction>
</PaymentItemInfo>
</PaymentTransactionDetails>
</GetTransactionDetailsResponseType>
</ArrayOfGetTransactionDetailsResponseType>