GET
/v1/catalog/ebay-category-specificsGET /v1/catalog/ebay-category-specifics
Scopes: catalog:ebay_attributes:read
Requires scope: catalog:ebay_attributes:read.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
category_id | query | integer<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);