Skip to main content

List eBay Inventory Comparison

GET 

/api/ebay/:integrationInstance/inventory

List the inventory comparison for this eBay integration: one row per mapped listing, showing the locally computed quantity (sku_quantity), the quantity eBay currently reports (sales_channel_quantity), the variance, and a sync status of synced, variance, or needs_recalc. eBay has a single stock pool, so every row belongs to one synthetic location whose ID equals the integration instance ID.

Authorization

Any valid API token can call this endpoint — no specific scope required. Manage tokens.

Filters:

  • filter[search]: matches listing SKU, listing title, product SKU, or offering name/SKU.
  • filter[status] (or status.is / status.is_one_of / status.is_not): synced, variance, or needs_recalc.
  • Operator filters use the form filter[column.operator]=value. Numeric operators (sku_quantity, sales_channel_quantity): is, is_not, is_one_of, is_not_one_of, greater_than, less_than, greater_than_or_equal, less_than_or_equal, between, is_empty, is_not_empty. Text operators (listing_sku, title, location_id): contains, does_not_contain, is, is_not, is_one_of, is_not_one_of, starts_with, does_not_start_with, ends_with, does_not_end_with, is_empty, is_not_empty. Date operators (sales_channel_quantity_updated_at, sales_channel_quantity_synced_at, created_at, updated_at): is, is_not, before, after, on_or_before, on_or_after, between, is_empty, is_not_empty, today, yesterday, past_week, past_month, past_year, days_ago, past_days. A bare filter[column]=value acts as an implicit "is".

Allowed sorts: id, sku_quantity, sales_channel_quantity, created_at, updated_at. Default sort: -id.

Request

Responses

OK

Response Headers
    Content-Type