getPayoutDetails

Note: Payout Details API Version 1.1.0 is only available for testing in the Sandbox environment until May 7, 2012. Until this service becomes available in the Production environment in May, DE and AT sellers should use Payout Details API Version 1.0.0 to retrieve seller payouts. Fields that are only available in 1.1.0 Version are called out in this documentation.

 

To retrieve seller payout information based on a specified date range or by specific payout ID(s), use the getPayoutDetails call. A single seller payout may encompass multiple orders, and if this is the case, seller payout information and order-specific information is returned for each order. Also, depending on the dollar value of the order, one order may have multiple seller payouts.

Request Details

To retrieve seller payout information based on a specified date range or by specific payout ID(s), use the getPayoutDetails call. Either payout IDs or a date range can be used to restrict/control results, but not both.

One or more payout IDs are passed into the payoutId field of the payoutIdArray container. If a payoutId is invalid, an error is returned

To filter by a date range, include the payoutDateRange container and specify a fromDate and a toDate value. All payouts processed by eBay within the specified date range are returned in the response. The maximum date range that can be specified with the fromDate and toDate values (or fromDate to present) is 90 days.

If you expect the response payload of a getPayoutDetails call to be large, pagination can be used to control the number of seller payouts returned per page of data. If there are multiple pages of seller payouts to view, you can programmatically "scroll" through the pages by making subsequent calls, incrementing the paginationInput.entriesPerPage value each time until all pages have been viewed and/or handled.

Working with the Response

The getPayoutDetails response provides the seller a detailed look at payouts for the specified payout ID(s), or for all payouts processed by eBay within a specified date range. All seller payout information for the order is contained under one or more payoutDetail elements. One payoutDetail element is returned for each seller payout related to the order. The following are the key containers and fields under the payoutDetail element:

The paginationOutput container is always returned, even when the caller does not include the paginationInput container in the request. The child fields of the paginationOutput container include the total number of payouts returned based on the input criteria, the number of seller payouts per page, the total pages returned, and the current page number of results.



Back to top

getPayoutDetails Input

The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also Samples.

<?xml version="1.0" encoding="utf-8"?>
<getPayoutDetailsRequest xmlns="http://www.ebay.com/marketplace/fundstatus/v1/services">
  <paginationInput> PaginationInput
    <entriesPerPage> int </entriesPerPage>
    <pageNumber> int </pageNumber>
  </paginationInput>
  <payoutDateRange> DateRangeType
    <fromDate> dateTime </fromDate>
    <toDate> dateTime </toDate>
  </payoutDateRange>
  <payoutIdArray> PayoutIdArrayType
    <payoutId> string </payoutId>
    <!-- ... more payoutId nodes here ... -->
  </payoutIdArray>
</getPayoutDetailsRequest>
Argument Type Occurrence Meaning
paginationInput PaginationInput Optional Container used to control the pagination of the result set, including the number of seller payouts returned per page and the page number you want returned in the output.
paginationInput.entriesPerPage int Optional Specifies the maximum number of seller payouts to return in one page of results in the response. If the number of seller payouts that can be returned is less than the value in entriesPerPage, then the lower number is returned. This field value defaults to 50 if not specified.
Min: 1. Max: 50. Default: 50.
paginationInput.pageNumber int Optional Specifies which page of seller payouts to return in the response. The total number of result pages is determined by the total number of seller payouts matching the input criteria divided by the number of seller payouts to display in each page. The total number of seller payouts is returned in the paginationOutput.totalEntries field of the getPayoutDetails response. The cases to display per page is set with the paginationInput.entriesPerPage field. If there are multiple result pages returned, subsequent calls can be made with all of the same input parameters, except for the pageNumber field, which is incremented by a value of 1 each time so that each subsequent page may be viewed and/or handled. This field value defaults to 1 if not specified.
Min: 1. Default: 1.
payoutDateRange DateRangeType Conditional A container consisting of a date range that restricts results to payouts disbursed within a specified date range. The specified date range is inclusive. The maximum date range that can be specified with this filter is 90 days.

In the getPayoutDetails call, the caller must use either the payoutIdArray container (seller payouts matching specified payout IDs are returned) or the payoutDateRange container, but cannot use both filter types. The payoutDateRange values are ignored if one or more payout IDs are passed in through the payoutIdArray container.
payoutDateRange.fromDate dateTime Required The starting date for the date range. The fromDate must be older than the toDate, and it cannot be set back more than 18 months in the past. This field is required if the payoutDateRange container is used.
payoutDateRange.toDate dateTime Optional The ending date for the date range. The toDate must be more recent than the fromDate. This field is optional. If it is omitted, all seller payouts processed from the fromDate up to the present (system date) are returned, unless the range specified by the fromDate and the present date is greater than 90 days, in which case the toDate defaults to 90 days forward from the fromDate.
payoutIdArray PayoutIdArrayType Conditional A container consisting of one or more seller payout IDs. For each seller payout that matches a payout ID passed in this container, a payoutDetail container is returned in the response.

In the getPayoutDetails call, the caller must use either the payoutIdArray container or the payoutDateRange container (restricting seller payouts to a specific date range), but cannot use both filter types.
payoutIdArray.payoutId string Conditional,
repeatable: [1..*]
A unique identifier for a seller payout. The payoutId value identifies the seller payout to retrieve in the response. At least one payoutId value is required if the payoutIdArray container is used.



Back to top

getPayoutDetails Output

The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also Samples.

<?xml version="1.0" encoding="utf-8"?>
<getPayoutDetailsResponse xmlns="http://www.ebay.com/marketplace/fundstatus/v1/services">
  <!-- Standard Output Fields -->
  <ack> AckValue </ack>
  <errorMessage> ErrorMessage
    <error> ErrorData
      <category> ErrorCategory </category>
      <domain> string </domain>
      <errorId> long </errorId>
      <exceptionId> token </exceptionId>
      <message> string </message>
      <parameter> ErrorParameter (string) </parameter>
      <!-- ... more parameter nodes here ... -->
      <severity> ErrorSeverity </severity>
      <subdomain> string </subdomain>
    </error>
    <!-- ... more error nodes here ... -->
  </errorMessage>
  <timestamp> dateTime </timestamp>
  <version> string </version>
  <!-- Call-specific Output Fields -->
  <paginationOutput> PaginationOutput
    <entriesPerPage> int </entriesPerPage>
    <pageNumber> int </pageNumber>
    <totalEntries> int </totalEntries>
    <totalPages> int </totalPages>
  </paginationOutput>
  <payoutDetail> PayoutDetailType
    <actualPayoutAmount> Amount (double) </actualPayoutAmount>
    <caseFund> CaseFundType
      <caseFundAmount> Amount (double) </caseFundAmount>
      <caseId> CaseIdType
        <id> string </id>
      </caseId>
    </caseFund>
    <!-- ... more caseFund nodes here ... -->
    <orderPayoutDetailType> OrderPayoutDetailType
      <multiplePayouts> boolean </multiplePayouts>
      <orderDetail> OrderDetailType
        <buyerId> string </buyerId>
        <orderAmount> Amount (double) </orderAmount>
        <orderId> OrderIdType
          <id> string </id>
        </orderId>
        <refundAmount> Amount (double) </refundAmount>
        <transactionDetail> TransactionDetailType
          <itemId> string </itemId>
          <itemTitle> string </itemTitle>
          <transactionId> string </transactionId>
        </transactionDetail>
        <!-- ... more transactionDetail nodes here ... -->
      </orderDetail>
      <orderPayoutAmount> Amount (double) </orderPayoutAmount>
    </orderPayoutDetailType>
    <!-- ... more orderPayoutDetailType nodes here ... -->
    <payoutAccountDetail> PayoutAccountDetailType
      <payoutAccountNumber> string </payoutAccountNumber>
      <payoutAccountType> PayoutAccountType (string) </payoutAccountType>
    </payoutAccountDetail>
    <payoutDate> dateTime </payoutDate>
    <payoutId> string </payoutId>
    <payoutStatus> PayoutStatusType </payoutStatus>
    <refund> RefundType
      <refundOrderId> OrderType
        <orderId> OrderIdType
          <id> string </id>
        </orderId>
        <transactionDetail> TransactionDetailType
          <itemId> string </itemId>
          <itemTitle> string </itemTitle>
          <transactionId> string </transactionId>
        </transactionDetail>
        <!-- ... more transactionDetail nodes here ... -->
      </refundOrderId>
      <sourceDetails> DebitedSourceType
        <debitedAmount> Amount (double) </debitedAmount>
        <debitedSource> string </debitedSource>
      </sourceDetails>
      <!-- ... more sourceDetails nodes here ... -->
      <totalRefundAmount> Amount (double) </totalRefundAmount>
    </refund>
    <!-- ... more refund nodes here ... -->
  </payoutDetail>
  <!-- ... more payoutDetail nodes here ... -->
</getPayoutDetailsResponse>
Return Value Type Occurrence Meaning
Standard Output Fields   [Jump to call-specific fields]
ack AckValue Always A token representing the application-level acknowledgement code that indicates the response status.

Applicable values:

•   Failure

(out) eBay encountered a fatal error during the processing of the request, causing the request to fail. When a serious application-level error occurs, the error is returned instead of the business data.

•   PartialFailure

(out) eBay successfully processed the request, but one or more non-fatal errors occurred during the processing. Inspect the message details and resolve any problems before resubmitting the request.

•   Success

(out) eBay successfully processed the request and the business data is returned in the response. Note that it is possible for a response to return Success, but still not contain the expected data in the result.

•   Warning

(out) The request that triggered the error was processed successfully but with one or more warnings.


errorMessage ErrorMessage Conditionally Information for an error or warning that occurred when eBay processed the request. This field is not returned if the ack value is Success.
errorMessage.error ErrorData Conditionally,
repeatable: [0..*]
Container consisting of detailed information about one error or warning. This container is only returned if an error or warning occurs with the request.
errorMessage.error.category ErrorCategory Conditionally There are three categories of errors: request errors, application errors, and system errors.

Applicable values:

•   Application

(out) An error occurred due to a problem with the request, with the most likely source being the application sending the request. For example, the request is missing a required data element or it contains an invalid field. The problem must be corrected before the request can be resent. Inspect the error message to find the cause of the problem. If the problem is due to an application error, modify the application and resend the request. If the error is due to invalid data, the source of the data must be corrected before you resend the resend request to eBay.

•   Request

(out) An error occurred due to a problem with the request, with the most likely source being missing or invalid data in the request. The problem must be corrected before the request can be retried. Inspect the error message to find the cause of the problem. If the problem is a result of end-user data, alert the end-user to the problem and provide the means for them to correct the problem. Once the problem is resolved, resend the request to eBay.

•   System

(out) Indicates that an error has occurred on the eBay system side. For example, a database or server could be down. Inspect the error message to find the cause of the problem. If the problem is on the eBay side, an application can retry the request a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.


errorMessage.error.domain string Conditionally Name of the domain in which the error occurred.
errorMessage.error.errorId long Conditionally A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.
errorMessage.error.exceptionId token Conditionally Unique identifier for an exception associated with an error.
errorMessage.error.message string Conditionally A detailed description of the condition that caused the error.
errorMessage.error.parameter ErrorParameter (string) Conditionally,
repeatable: [0..*]
Various warning and error messages return one or more variables that contain contextual information about the error. This is often the field or value that triggered the error.
errorMessage.error.severity ErrorSeverity Conditionally Indicates whether the reported problem is fatal (an error) or is less- severe (a warning). Review the error message details for information on the cause.

If the request fails and the application is the source of the error (for example, a required element is missing), update the application before you retry the request. If the problem is due to incorrect user data, alert the end-user to the problem and provide the means for them to correct the data. Once the problem in the application or data is resolved, re-send the request to eBay.

If the source of the problem is on eBay's side, you can retry the request a reasonable number of times (eBay recommends you try the request twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, you can resend the request in its original form.

If a warning occurs, warning information is returned in addition to the business data. Normally, you do not need to resend the request (as the original request was successful). However, depending on the cause of the warning, you might need to contact the end user, or eBay, to effect a long term solution to the problem.

Applicable values:

•   Error

(out) eBay encountered a fatal error during the processing of the request, causing the request to fail. When eBay encounters an error, it returns error data instead of the requested business data. Inspect the error details and resolve the problem before resubmitting the request.

•   Warning

(out) The request was successfully processed, but eBay encountered a non-fatal error during the processing that could affect the data returned. For example, eBay might have changed the value of an input field. In this Return, eBay returns a successful response, but it also returns a warning. For best results, requests should return without warnings. Inspect the warning details and resolve the problem before resubmitting the request.


errorMessage.error.subdomain string Conditionally Name of the subdomain in which the error occurred.
timestamp dateTime Always This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See Time Values in the eBay Web Services guide for information about this time format and converting to and from the GMT time zone.
version string Always The version of the response payload schema. Indicates the version of the schema that eBay used to process the request.
Call-specific Output Fields
paginationOutput PaginationOutput Always Pagination container consisting of fields that indicate the total number of pages and payouts that match the input criteria, the number of payouts per page, and the current page number being viewed. This container is returned regardless of whether the paginationInput container is used in the request.
paginationOutput
  .entriesPerPage
int Always The number of payouts returned per page. This value is set in the paginationInput.entriesPerPage field in the request. This field is always returned with the paginationOutput container.
paginationOutput.pageNumber int Always The page number currently being viewed. The total number of result pages is shown in the totalPages field. This field is always returned with the paginationOutput container.
paginationOutput.totalEntries int Always This value indicates the total number of seller payouts that exist based on the current input criteria. Once this value is known, the caller may want to considering tweaking the paginationInput fields and making another call. This field is always returned with the paginationOutput container.
paginationOutput.totalPages int Always This value indicates the total number of result pages that exist based on the current input criteria. If totalPages is more than 1, multiple calls must be made to view all payout results, with the paginationInput.pageNumber value being incremented by 1 in each subsequent call. This field is always returned with the paginationOutput container.
payoutDetail PayoutDetailType Conditionally,
repeatable: [0..*]
Container consisting of detailed information on a seller payout. A separate payoutDetail node is returned for each seller payout that matches the input criteria in the request.
payoutDetail
  .actualPayoutAmount
Amount (double) Always The payout amount to the seller. This value may be less than the order amount if the seller issued a partial refund to the buyer.
payoutDetail.caseFund CaseFundType Conditionally,
repeatable: [0..*]
Container consisting of information on an eBay Buyer Protection case. This container is only returned if there is an eBay Buyer Protection case or dispute filed against the order. There can be multiple caseFund containers returned if there is more than one case filed against the order (eBP cases are filed at the order line item level). For more information on eBay Buyer Protection cases, see the Resolution Case Management API documentation.
payoutDetail.caseFund
  .caseFundAmount
Amount (double) Conditionally The monetary amount involved in the eBay Buyer Protection case between the buyer and seller. This field is always returned with the caseFund container.
payoutDetail.caseFund.caseId CaseIdType Conditionally The unique identifier of the eBay Buyer Protection case. This field is always returned with the caseFund container.
payoutDetail.caseFund.caseId
  .id
string Conditionally The unique identifier of an eBay Buyer Protection case. This field is always returned with the caseId container.
Max length: 38.
payoutDetail
  .orderPayoutDetailType
OrderPayoutDetailType Always,
repeatable: [1..*]
Container consisting of detailed seller payout information for an eBay order.
payoutDetail
  .orderPayoutDetailType
  .multiplePayouts
boolean Always A flag that indicates whether or not an eBay order has multiple payouts to the seller. A 'true' value indicates that the order has multiple payouts. This field is always returned with orderPayoutDetailType container.
payoutDetail
  .orderPayoutDetailType
  .orderDetail
OrderDetailType Always Container consisting of detailed information about an eBay order that has either received, or is scheduled to receive one or more seller payouts. The orderDetail container is always returned with the orderPayoutDetailType container.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.buyerId
string Conditionally The eBay user ID of the order's buyer. .
payoutDetail
  .orderPayoutDetailType
  .orderDetail.orderAmount
Amount (double) Always This dollar value indicates the total amount of the order. This field is always returned with the orderDetail container.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.orderId
OrderIdType Always Container consisting of the unique identifier of an eBay order. This container is always returned with the orderDetail container.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.orderId.id
string Always A unique identifier of an eBay order. This field will accept an eBay-generated OrderID value or an OrderLineItemID value, which is a concatenation of ItemID and TransactionID with a hyphen separating these two IDs. See the Trading API documentation for more information on eBay orders.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.refundAmount
Amount (double) Conditionally The monetary amount of a seller's refund to the buyer. This field is only returned if a full or partial refund was issued by the seller to the buyer.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.transactionDetail
TransactionDetailType Always,
repeatable: [1..*]
Container consisting of identifying information for each line item in the order. A transactionDetail container is returned for each order line item that is enabled for the new eBay payment process.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.transactionDetail
  .itemId
string Always Unique identifier of an eBay item listing.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.transactionDetail
  .itemTitle
string Always The title of an eBay item listing.
payoutDetail
  .orderPayoutDetailType
  .orderDetail.transactionDetail
  .transactionId
string Always Unique identifier of an eBay order line item.
payoutDetail
  .orderPayoutDetailType
  .orderPayoutAmount
Amount (double) Always This dollar value indicates the total payout amount for the order.
payoutDetail
  .payoutAccountDetail
PayoutAccountDetailType Always Container consisting of the seller's account type and account number.
payoutDetail
  .payoutAccountDetail
  .payoutAccountNumber
string Conditionally The account number of the seller's payout account. This information will only be returned to the seller.
payoutDetail
  .payoutAccountDetail
  .payoutAccountType
PayoutAccountType (string) Always The account type selected by the seller to which eBay will distribute seller payouts.
payoutDetail.payoutDate dateTime Always Timestamp indicating the date and time when the payout was made to the seller.
payoutDetail.payoutId string Always The unique identifier of a seller payout.
payoutDetail.payoutStatus PayoutStatusType Always Enumeration value indicating the status of the payout to the seller.

Applicable values:

•   PaidOut

(out) This value indicates that eBay has disbursed the payout and the funds have been deposited in the seller's account.

•   PayoutSent

(out) This value indicates that eBay has disbursed the payout and the funds are en route to the seller's account.


payoutDetail.refund RefundType Conditionally,
repeatable: [0..*]
Container consisting of detailed information on a seller's refund to the buyer. This container is only returned if the seller has issued one or more refunds to the buyer for the order. A separate refund transaction is required for each order line item, and for each refund type. For example, refunding purchase price and refunding shipping are two separate refund transactions.
payoutDetail.refund
  .refundOrderId
OrderType Conditionally The unique identifier of the order in which a refund was issued to the buyer. This field is always returned with the refund container.
payoutDetail.refund
  .refundOrderId.orderId
OrderIdType Conditionally Container consisting of the unique identifier of an eBay order. This container is always returned with the refundOrderId container.
payoutDetail.refund
  .refundOrderId.orderId.id
string Always A unique identifier of an eBay order. This field will accept an eBay-generated OrderID value or an OrderLineItemID value, which is a concatenation of ItemID and TransactionID with a hyphen separating these two IDs. See the Trading API documentation for more information on eBay orders.
payoutDetail.refund
  .refundOrderId
  .transactionDetail
TransactionDetailType Conditionally,
repeatable: [0..*]
Container consisting of identifying information for the order line item on which one or more refunds were issued to the buyer. One transactionDetail container will be returned for each line item in the order receiving refund(s). At least one transactionDetail container is always returned with the refundOrderId container.
payoutDetail.refund
  .refundOrderId
  .transactionDetail.itemId
string Always Unique identifier of an eBay item listing.
payoutDetail.refund
  .refundOrderId
  .transactionDetail.itemTitle
string Always The title of an eBay item listing.
payoutDetail.refund
  .refundOrderId
  .transactionDetail
  .transactionId
string Always Unique identifier of an eBay order line item.
payoutDetail.refund
  .sourceDetails
DebitedSourceType Conditionally,
repeatable: [1..*]
Container consisting of a seller's account type, account number, and monetary amount debited to the account to satisfy a refund to the buyer. This container is always returned with the refund container.
payoutDetail.refund
  .sourceDetails.debitedAmount
Amount (double) Conditionally This dollar value indicates the monetary amount debited for the seller's account (defined in the debitedSource) field. This field is always returned with the sourceDetails container.
payoutDetail.refund
  .sourceDetails.debitedSource
string Conditionally This string value indicates the type of seller's account that is debited for the refund. This field is always returned with the sourceDetails container.
payoutDetail.refund
  .totalRefundAmount
Amount (double) Conditionally This dollar value indicates the total amount of one or more refunds issued by the seller to the buyer for the order. This field is always returned with the refund container.



Back to top

getPayoutDetails Samples

New to making API calls? Please see Making an API Call.

Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.

Sample: Basic

Retrieves seller payout details based on a specific payout ID.

Description

This getPayoutDetails call sample returns seller payout details based on a specific payout ID.

This call will fail if an invalid payout ID is passed in. An error message will be returned if the seller payout is more than 90 days old. The caller must be authenticated to make this call.

Input

A seller listing on the German (DE) site wants to retrieve seller payout details for a specific payout ID. The payout ID is 3228809.

XML format (HTTP POST). Also available are the .txt version of this XML and the SOAP equivalents.

<?xml version="1.0" encoding="utf-8"?>
<getPayoutDetailsRequest xmlns:soap="http://www.ebay.com/marketplace/fundstatus/v1/services">
   <payoutIdArray>
      <payoutId>3228809</payoutId>
   </payoutIdArray>
</getPayoutDetailsRequest>

Output

Seller payout ID 3228809 is the seller payout for the following three orders: 290006116171-7740091019, 6137582019 (a combined payment order), and 290006116174-7740092019. All three orders have different buyers. Seller payout 3228809 is the only seller payout for all three orders, hence the multiplePayouts field is false for all three orders.

The total payout amount for payout ID 3228809 is $260.00. The seller payout was distributed to the seller's PayPal account.

XML format. Also available are the .txt version of this XML and the SOAP equivalent.

<?xml version="1.0" encoding="utf-8"?>
<getPayoutDetailsResponse xmlns:soap="http://www.ebay.com/marketplace/fundstatus/v1/services">
   <ack>Success</ack>
   <version>1.0.0</version>
   <timestamp>2011-08-14T07:14:59.461Z</timestamp>
   <payoutDetail>
      <payoutId>3228809</payoutId>
      <actualPayoutAmount currencyId="EUR">260.0</actualPayoutAmount>
      <payoutDate>2011-07-02T00:00:00.000-07:00</payoutDate>
      <payoutStatus>PaidOut</payoutStatus>
      <payoutAccountDetail>
         <payoutAccountType>PAYPAL</payoutAccountType>
         <payoutAccountNumber>a***8@paypal.com</payoutAccountNumber>
      </payoutAccountDetail>
      <orderPayoutDetailType>
         <orderDetail>
            <orderId>
               <id>290006116171-7740091019</id>
            </orderId>
            <orderAmount currencyId="EUR">30.0</orderAmount>
            <buyerId>1012075200</buyerId>
            <transactionDetail>
               <transactionId>7740091019</transactionId>
               <itemId>290006116171</itemId>
               <itemTitle>Fixed Price Single Quantity</itemTitle>
            </transactionDetail>
         </orderDetail>
         <multiplePayouts>false</multiplePayouts>
         <orderPayoutAmount currencyId="EUR">30.0</orderPayoutAmount>
      </orderPayoutDetailType>
      <orderPayoutDetailType>
         <orderDetail>
            <orderId>
               <id>6137582019</id>
            </orderId>
            <orderAmount currencyId="EUR">130.0</orderAmount>
            <buyerId>1012075220</buyerId>
            <transactionDetail>
               <transactionId>7740094019</transactionId>
               <itemId>290006116170</itemId>
               <itemTitle>Fixed Price Single Quantity</itemTitle>
            </transactionDetail>
            <transactionDetail>
               <transactionId>7740093019</transactionId>
               <itemId>290006116175</itemId>
               <itemTitle>Fixed Price Single Quantity</itemTitle>
            </transactionDetail>
         </orderDetail>
         <multiplePayouts>false</multiplePayouts>
         <orderPayoutAmount currencyId="EUR">130.0</orderPayoutAmount>
      </orderPayoutDetailType>
      <orderPayoutDetailType>
         <orderDetail>
            <orderId>
               <id>290006116174-7740092019</id>
            </orderId>
            <orderAmount currencyId="EUR">100.0</orderAmount>
            <buyerId>1012075217</buyerId>
            <transactionDetail>
               <transactionId>7740092019</transactionId>
               <itemId>290006116174</itemId>
               <itemTitle>Fixed Price Single Quantity</itemTitle>
            </transactionDetail>
         </orderDetail>
         <multiplePayouts>false</multiplePayouts>
         <orderPayoutAmount currencyId="EUR">100.0</orderPayoutAmount>
      </orderPayoutDetailType>
   </payoutDetail>
   <paginationOutput>
      <entriesPerPage>100</entriesPerPage>
      <pageNumber>1</pageNumber>
      <totalEntries>3</totalEntries>
      <totalPages>1</totalPages>
   </paginationOutput
</getPayoutDetailsResponse>



Back to top

getPayoutDetails Change History

Version Description
1.1.0
2012-04-07
  • payoutDetail.refund (added): This container is returned in the response if the one or more refunds were issued from the seller to the buyer.
1.0.0
2011-08-03
  • (added) New call.



Back to top

User-Contributed Notes

   
 
 
 

Copyright © 2011–2012 eBay, Inc. All rights reserved. This documentation and the API may only be used in accordance with the eBay Developers Program and API License Agreement.