GET
/v1/catalog/ebay-attributes/{recordId}GET /v1/catalog/ebay-attributes/{recordId}
Scopes: catalog:ebay_attributes:read
Requires scope: catalog:ebay_attributes:read.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
recordId | path | integer<int32> | yes |
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-attributes/{recordId}', {
// params: { path: { id: '...' }, query: { limit: 25 } },
// body: { /* request body */ },
});
if (error) throw error;
console.log(data);