Solid Commerce Docs
DELETE/v1/listings/ebay-queue

DELETE /v1/listings/ebay-queue

Scopes: listings:ebay_queue:delete

Requires scope: listings:ebay_queue:delete.

Request body

FieldTypeRequiredDescription
queIdsinteger<int32>[]no

Examples

import { SolidCommerceClient } from '@solidcommerce/sdk';

const client = new SolidCommerceClient({
  apiKey: process.env.SOLIDCOMMERCE_API_KEY!,
});

const { data, error } = await client.raw.DELETE('/v1/listings/ebay-queue', {
  // params: { path: { id: '...' }, query: { limit: 25 } },
  // body: { /* request body */ },
});

if (error) throw error;
console.log(data);