PUT
/v1/catalog/ebay-attributes/{recordId}PUT /v1/catalog/ebay-attributes/{recordId}
Scopes: catalog:ebay_attributes:write
Requires scope: catalog:ebay_attributes:write.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
recordId | path | integer<int32> | yes |
Request body
| Field | Type | Required | Description |
|---|---|---|---|
attributes | EbayAttributeValueRecord[] | no |
Examples
import { SolidCommerceClient } from '@solidcommerce/sdk';
const client = new SolidCommerceClient({
apiKey: process.env.SOLIDCOMMERCE_API_KEY!,
});
const { data, error } = await client.raw.PUT('/v1/catalog/ebay-attributes/{recordId}', {
// params: { path: { id: '...' }, query: { limit: 25 } },
// body: { /* request body */ },
});
if (error) throw error;
console.log(data);