POST
/v1/catalog/taxonomy/magic-fillPOST /v1/catalog/taxonomy/magic-fill
Scopes: catalog:taxonomies:read
Requires scope: catalog:taxonomies:read.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
channelId | integer<int32> | no | |
ldsku | integer<int64> | 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/magic-fill', {
// params: { path: { id: '...' }, query: { limit: 25 } },
// body: { /* request body */ },
});
if (error) throw error;
console.log(data);