v2

latestOpenAPI 3.0.32026-08-05174296703.4 KB
ops

moveOffersToSellerOps offer

Move one or more offers from one seller to another. Associated orders and sales agents will always be moved.

put/ops/offers/move

Request body

destination_seller_idstring

the seller ID the offers should be moved to

offer_idsstring[] required

list of offer IDs to move

Example request

{
  "destination_seller_id": "abc123",
  "offer_ids": [
    "abc123",
    "abc123"
  ]
}

Response

OK response.

moved_offersinteger required

number of offers updated

moved_ordersinteger required

number of associated orders updated

moved_sales_agentsinteger required

number of associated sales agents updated

Example response

{
  "moved_offers": 1,
  "moved_orders": 1,
  "moved_sales_agents": 1
}