Inherits from Trading_AbstractRequestType : NSObject
Declared in Trading_GetSellerTransactionsRequestType.h
Trading_GetSellerTransactionsRequestType.m

Overview

Retrieves order line item (transaction) information for the user for which the
call is made, and not for any other user. Also for
Half.com
. (To retrieve order line items for another seller’s listings, use
GetItemTransactions.)

@ingroup EBayAPIInterface

Tasks

  •   modTimeFrom

    The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
    order line items associated with the seller. The ModTimeFrom
    field is the starting date range. All of the seller’s order line items that were
    last modified within this date range are returned in the output. The
    maximum date range that may be specified is 30 days. This field is not
    applicable if the NumberOfDays date filter is used.



    If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
    time filter is used and it defaults to 30 (days).

    property
  •   modTimeTo

    The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
    order line items associated with the seller. The ModTimeTo
    field is the ending date range. All of the seller’s order line items that were last
    modified within this date range are returned in the output. The maximum
    date range that may be specified is 30 days. If the ModTimeFrom field is
    used and the ModTimeTo field is omitted, the ModTimeTo value defaults to
    the present time or to 30 days past the ModTimeFrom value (if
    ModTimeFrom value is more than 30 days in the past). This field is not
    applicable if the NumberOfDays date filter is used.



    If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
    time filter is used and it defaults to 30 (days).

    property
  •   pagination

    Child elements control pagination of the output. Use EntriesPerPage property to
    control the number of transactions to return per call and PageNumber property to
    specify the page of data to return.

    property
  •   includeFinalValueFee

    Indicates whether to include Final Value Fee (FVF) in the response. For most
    listing types, the Final Value Fee is returned in Transaction.FinalValueFee.
    The Final Value Fee is returned for each order line item.

    property
  •   includeContainingOrder

    Include this field and set it to True if you want the ContainingOrder
    container to be returned in the response under each Transaction node.
    For single line item orders, the ContainingOrder.OrderID value takes the
    value of the OrderLineItemID value for the order line item. For Combined
    Payment orders, the ContainingOrder.OrderID value will be shared by at
    least two order line items (transactions) that are part of the same
    order.

    property
  •   skuArray

    Container for a set of SKUs.
    Filters (reduces) the response to only include order line items
    for listings that include any of the specified SKUs.
    If multiple listings include the same SKU, order line items for
    all of them are returned (assuming they also match the other
    criteria in the GetSellerTransactions request).



    You can combine SKUArray with InventoryTrackingMethod.
    For example, if you also pass in InventoryTrackingMethod=SKU,
    the response only includes order line items for listings that
    include InventoryTrackingMethod=SKU and one of the
    requested SKUs.

    property
  •   platform

    Name of the eBay co-branded site upon which the order line item was made.
    This will serve as a filter for the order line items to get emitted in the response.

    property
  •   numberOfDays

    NumberOfDays enables you to specify the number of days' worth of new and modified
    order line items that you want to retrieve. The call response contains the
    order line items whose status was modified within the specified number of days since
    the API call was made. NumberOfDays is often preferable to using the ModTimeFrom
    and ModTimeTo filters because you only need to specify one value. If you use
    NumberOfDays, then ModTimeFrom and ModTimeTo are ignored. For this field, one day
    is defined as 24 hours.

    property
  •   inventoryTrackingMethod

    Filters the response to only include order line items for listings
    that match this InventoryTrackingMethod setting.



    To track items by seller-defined SKU values instead of by Item IDs, the
    InventoryTrackingMethod must be included and set to ‘SKU'
    in the AddFixedPriceItem (or ReviseFixedPriceItem
    or RelistFixedPriceItem) call.




    You can combine SKUArray with InventoryTrackingMethod.
    For example, if you set this to SKU and you also pass in
    SKUArray, the response only includes order line items for listings
    that include InventoryTrackingMethod=SKU and one of the
    requested SKUs.

    property
  •   includeCodiceFiscale

    If this flag is included in the request and set to ‘true’, the buyer’s Codice Fiscale
    number is returned in the response (if provided by the buyer).



    This field is only applicable to Italian sellers. The Codice Fiscale number is unique
    for each Italian citizen and is used for tax purposes.

    property

Properties

includeCodiceFiscale

If this flag is included in the request and set to ‘true’, the buyer’s Codice Fiscale
number is returned in the response (if provided by the buyer).



This field is only applicable to Italian sellers. The Codice Fiscale number is unique
for each Italian citizen and is used for tax purposes.

@property (nonatomic, retain) NSNumber *includeCodiceFiscale

Discussion

If this flag is included in the request and set to ‘true’, the buyer’s Codice Fiscale
number is returned in the response (if provided by the buyer).



This field is only applicable to Italian sellers. The Codice Fiscale number is unique
for each Italian citizen and is used for tax purposes.

type : NSNumber, wrapper for primitive bool

Declared In

Trading_GetSellerTransactionsRequestType.h

includeContainingOrder

Include this field and set it to True if you want the ContainingOrder
container to be returned in the response under each Transaction node.
For single line item orders, the ContainingOrder.OrderID value takes the
value of the OrderLineItemID value for the order line item. For Combined
Payment orders, the ContainingOrder.OrderID value will be shared by at
least two order line items (transactions) that are part of the same
order.

@property (nonatomic, retain) NSNumber *includeContainingOrder

Discussion

Include this field and set it to True if you want the ContainingOrder
container to be returned in the response under each Transaction node.
For single line item orders, the ContainingOrder.OrderID value takes the
value of the OrderLineItemID value for the order line item. For Combined
Payment orders, the ContainingOrder.OrderID value will be shared by at
least two order line items (transactions) that are part of the same
order.

type : NSNumber, wrapper for primitive bool

Declared In

Trading_GetSellerTransactionsRequestType.h

includeFinalValueFee

Indicates whether to include Final Value Fee (FVF) in the response. For most
listing types, the Final Value Fee is returned in Transaction.FinalValueFee.
The Final Value Fee is returned for each order line item.

@property (nonatomic, retain) NSNumber *includeFinalValueFee

Discussion

Indicates whether to include Final Value Fee (FVF) in the response. For most
listing types, the Final Value Fee is returned in Transaction.FinalValueFee.
The Final Value Fee is returned for each order line item.

type : NSNumber, wrapper for primitive bool

Declared In

Trading_GetSellerTransactionsRequestType.h

inventoryTrackingMethod

Filters the response to only include order line items for listings
that match this InventoryTrackingMethod setting.



To track items by seller-defined SKU values instead of by Item IDs, the
InventoryTrackingMethod must be included and set to ‘SKU'
in the AddFixedPriceItem (or ReviseFixedPriceItem
or RelistFixedPriceItem) call.




You can combine SKUArray with InventoryTrackingMethod.
For example, if you set this to SKU and you also pass in
SKUArray, the response only includes order line items for listings
that include InventoryTrackingMethod=SKU and one of the
requested SKUs.

@property (nonatomic, retain) NSString *inventoryTrackingMethod

Discussion

Filters the response to only include order line items for listings
that match this InventoryTrackingMethod setting.



To track items by seller-defined SKU values instead of by Item IDs, the
InventoryTrackingMethod must be included and set to ‘SKU'
in the AddFixedPriceItem (or ReviseFixedPriceItem
or RelistFixedPriceItem) call.




You can combine SKUArray with InventoryTrackingMethod.
For example, if you set this to SKU and you also pass in
SKUArray, the response only includes order line items for listings
that include InventoryTrackingMethod=SKU and one of the
requested SKUs.

type: string constant in Trading_InventoryTrackingMethodCodeType.h

Declared In

Trading_GetSellerTransactionsRequestType.h

modTimeFrom

The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
order line items associated with the seller. The ModTimeFrom
field is the starting date range. All of the seller’s order line items that were
last modified within this date range are returned in the output. The
maximum date range that may be specified is 30 days. This field is not
applicable if the NumberOfDays date filter is used.



If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
time filter is used and it defaults to 30 (days).

@property (nonatomic, retain) NSDate *modTimeFrom

Discussion

The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
order line items associated with the seller. The ModTimeFrom
field is the starting date range. All of the seller’s order line items that were
last modified within this date range are returned in the output. The
maximum date range that may be specified is 30 days. This field is not
applicable if the NumberOfDays date filter is used.



If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
time filter is used and it defaults to 30 (days).

type : NSDate, wrapper for primitive date

Declared In

Trading_GetSellerTransactionsRequestType.h

modTimeTo

The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
order line items associated with the seller. The ModTimeTo
field is the ending date range. All of the seller’s order line items that were last
modified within this date range are returned in the output. The maximum
date range that may be specified is 30 days. If the ModTimeFrom field is
used and the ModTimeTo field is omitted, the ModTimeTo value defaults to
the present time or to 30 days past the ModTimeFrom value (if
ModTimeFrom value is more than 30 days in the past). This field is not
applicable if the NumberOfDays date filter is used.



If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
time filter is used and it defaults to 30 (days).

@property (nonatomic, retain) NSDate *modTimeTo

Discussion

The ModTimeFrom and ModTimeTo fields specify a date range for retrieving
order line items associated with the seller. The ModTimeTo
field is the ending date range. All of the seller’s order line items that were last
modified within this date range are returned in the output. The maximum
date range that may be specified is 30 days. If the ModTimeFrom field is
used and the ModTimeTo field is omitted, the ModTimeTo value defaults to
the present time or to 30 days past the ModTimeFrom value (if
ModTimeFrom value is more than 30 days in the past). This field is not
applicable if the NumberOfDays date filter is used.



If you don’t specify a ModTimeFrom/ModTimeTo filter, the NumberOfDays
time filter is used and it defaults to 30 (days).

type : NSDate, wrapper for primitive date

Declared In

Trading_GetSellerTransactionsRequestType.h

numberOfDays

NumberOfDays enables you to specify the number of days' worth of new and modified
order line items that you want to retrieve. The call response contains the
order line items whose status was modified within the specified number of days since
the API call was made. NumberOfDays is often preferable to using the ModTimeFrom
and ModTimeTo filters because you only need to specify one value. If you use
NumberOfDays, then ModTimeFrom and ModTimeTo are ignored. For this field, one day
is defined as 24 hours.

@property (nonatomic, retain) NSNumber *numberOfDays

Discussion

NumberOfDays enables you to specify the number of days' worth of new and modified
order line items that you want to retrieve. The call response contains the
order line items whose status was modified within the specified number of days since
the API call was made. NumberOfDays is often preferable to using the ModTimeFrom
and ModTimeTo filters because you only need to specify one value. If you use
NumberOfDays, then ModTimeFrom and ModTimeTo are ignored. For this field, one day
is defined as 24 hours.

type : NSNumber, wrapper for primitive int

Declared In

Trading_GetSellerTransactionsRequestType.h

pagination

Child elements control pagination of the output. Use EntriesPerPage property to
control the number of transactions to return per call and PageNumber property to
specify the page of data to return.

@property (nonatomic, retain) Trading_PaginationType *pagination

Discussion

Child elements control pagination of the output. Use EntriesPerPage property to
control the number of transactions to return per call and PageNumber property to
specify the page of data to return.

type : class Trading_PaginationType

Declared In

Trading_GetSellerTransactionsRequestType.h

platform

Name of the eBay co-branded site upon which the order line item was made.
This will serve as a filter for the order line items to get emitted in the response.

@property (nonatomic, retain) NSString *platform

Discussion

Name of the eBay co-branded site upon which the order line item was made.
This will serve as a filter for the order line items to get emitted in the response.

type: string constant in Trading_TransactionPlatformCodeType.h

Declared In

Trading_GetSellerTransactionsRequestType.h

skuArray

Container for a set of SKUs.
Filters (reduces) the response to only include order line items
for listings that include any of the specified SKUs.
If multiple listings include the same SKU, order line items for
all of them are returned (assuming they also match the other
criteria in the GetSellerTransactions request).



You can combine SKUArray with InventoryTrackingMethod.
For example, if you also pass in InventoryTrackingMethod=SKU,
the response only includes order line items for listings that
include InventoryTrackingMethod=SKU and one of the
requested SKUs.

@property (nonatomic, retain) Trading_SKUArrayType *skuArray

Discussion

Container for a set of SKUs.
Filters (reduces) the response to only include order line items
for listings that include any of the specified SKUs.
If multiple listings include the same SKU, order line items for
all of them are returned (assuming they also match the other
criteria in the GetSellerTransactions request).



You can combine SKUArray with InventoryTrackingMethod.
For example, if you also pass in InventoryTrackingMethod=SKU,
the response only includes order line items for listings that
include InventoryTrackingMethod=SKU and one of the
requested SKUs.

type : class Trading_SKUArrayType

Declared In

Trading_GetSellerTransactionsRequestType.h