---
name: sku-bindings-api
description: "SKU Bindings API skill. Use when working with SKU Bindings for sku-binding. Covers 12 endpoints."
version: 1.0.0
generator: lapsh
---

# SKU Bindings API
API version: 1.0

## Auth
ApiKey X-VTEX-API-AppKey in header | ApiKey X-VTEX-API-AppToken in header | ApiKey VtexIdclientAutCookie in header

## Base URL
https://apiexamples.vtexcommercestable.com.br/api

## Setup
1. Set your API key in the appropriate header
2. GET /sku-binding/pvt/skuseller/admin -- verify access
3. POST /sku-binding/pvt/skuseller/changenotification/{skuId} -- create first changenotification

## Endpoints

12 endpoints across 1 groups. See references/api-spec.lap for full details.

### sku-binding
| Method | Path | Description |
|--------|------|-------------|
| GET | /sku-binding/pvt/skusellers/{skuId} | Get SKU bindings by SKU ID |
| GET | /sku-binding/pvt/skuseller/admin | Get SKU bindings information |
| GET | /sku-binding/pvt/skuseller/{sellerId}/{sellerSkuId} | Get details of a seller's SKU |
| PUT | /sku-binding/pvt/skuseller/{sellerId}/{sellerSkuId} | Bind a seller's SKU to another SKU |
| GET | /sku-binding/pvt/skuseller/list/bysellerId/{sellerId} | Get all SKU bindings by seller ID |
| GET | /sku-binding/pvt/skuseller/paged/sellerid/{sellerId} | Get paged SKU bindings by seller ID |
| POST | /sku-binding/pvt/skuseller/changenotification/{skuId} | Change notification with SKU ID |
| POST | /sku-binding/pvt/skuseller/changenotification/{sellerId}/{sellerSkuId} | Change notification with seller ID and seller SKU ID |
| POST | /sku-binding/pvt/skuseller/insertion | Insert SKU binding |
| POST | /sku-binding/pvt/skuseller/activate/{sellerId}/{skuSellerId} | Activate SKU binding |
| POST | /sku-binding/pvt/skuseller/inactivate/{sellerId}/{skuSellerId} | Deactivate SKU binding |
| POST | /sku-binding/pvt/skuseller/remove/{sellerId}/{sellerSkuId} | Remove a seller's SKU binding |

## Common Questions

Match user requests to endpoints in references/api-spec.lap. Key patterns:
- "Get skuseller details?" -> GET /sku-binding/pvt/skusellers/{skuId}
- "List all admin?" -> GET /sku-binding/pvt/skuseller/admin
- "Get skuseller details?" -> GET /sku-binding/pvt/skuseller/{sellerId}/{sellerSkuId}
- "Update a skuseller?" -> PUT /sku-binding/pvt/skuseller/{sellerId}/{sellerSkuId}
- "Get bysellerId details?" -> GET /sku-binding/pvt/skuseller/list/bysellerId/{sellerId}
- "Get sellerid details?" -> GET /sku-binding/pvt/skuseller/paged/sellerid/{sellerId}
- "Create a insertion?" -> POST /sku-binding/pvt/skuseller/insertion
- "How to authenticate?" -> See Auth section

## Response Tips
- Check response schemas in references/api-spec.lap for field details
- List endpoints may support pagination; check for limit, offset, or cursor params
- Create/update endpoints typically return the created/updated object

## CLI

```bash
# Update this spec to the latest version
npx @lap-platform/lapsh get sku-bindings-api -o references/api-spec.lap

# Search for related APIs
npx @lap-platform/lapsh search sku-bindings-api
```

## References
- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas

> Generated from the official API spec by [LAP](https://lap.sh)
