POST
/v1/catalog/taxonomy/product-valuesPOST /v1/catalog/taxonomy/product-values
Scopes: catalog:taxonomies:write
Requires scope: catalog:taxonomies:write.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
channelId | integer<int32> | no | |
ldsku | integer<int64> | no | |
values | EbayAttributeValueRecord[] | no |
Examples
import { SolidCommerceClient } from '@solidcommerce/sdk';
const client = new SolidCommerceClient({
apiKey: process.env.SOLIDCOMMERCE_API_KEY!,
});
const { data, error } = await client.raw.POST('/v1/catalog/taxonomy/product-values', {
// params: { path: { id: '...' }, query: { limit: 25 } },
// body: { /* request body */ },
});
if (error) throw error;
console.log(data);