v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Marketplaces - Orders - Batches

[DEPRECATED] Send a batch of operations to clear an Order's merchant information (max 100 items per call)

The purpose of this operation is to reduce the amount of request to the API.

post/v2/user/marketplaces/orders/batches/clearMerchantOrderInfos

Request body

Example request

{
  "orders": [
    {
      "marketplaceTechnicalCode": "Amazon",
      "accountId": "1234",
      "beezUPOrderId": "0"
    },
    {
      "marketplaceTechnicalCode": "Amazon",
      "accountId": "5678",
      "beezUPOrderId": "0"
    },
    {
      "marketplaceTechnicalCode": "Ebay",
      "accountId": "9876",
      "beezUPOrderId": "0"
    }
  ]
}

Response

Succesfully received and processed batched operations. Please check response to see the status per operation.

Example response

{
  "operations": [
    {
      "order": {
        "marketplaceTechnicalCode": "Amazon",
        "beezUPOrderId": "00000000000000000000000000000000000000000000000"
      },
      "errors": [
        {
          "docUrl": "https://api-docs.beezup.com/#operation/EnableChannelCatalog",
          "code": "CatalogImportationAlreadyInProgress(ExecutionId currentCatalogImportationId)",
          "message": "There is already an importation in progress: b24d0dd8-a561-478a-9b26-34f573f03527\n",
          "cultureName": "en",
          "arguments": [
            {
              "name": "currentCatalogImportationId"
            }
          ]
        }
      ]
    }
  ]
}