Solid Commerce Docs
GET/v1/catalog/ebay-category-specifics

GET /v1/catalog/ebay-category-specifics

Scopes: catalog:ebay_attributes:read

Requires scope: catalog:ebay_attributes:read.

Parameters

NameInTypeRequiredDescription
category_idqueryinteger<int32>no

Examples

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

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

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

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