action vtex_post_api_catalog_system_pvt_skuseller_changenotification_seller { label: "Change Notification with Seller ID and Seller SKU ID" description: " > ⚠️ Check out the updated version of the SKU Seller endpoints in our [SKU Bindings API documentation](https://developers.vtex.com/vtex-rest-api/reference/getbyskuid). If you are doing this integration for the first time, we recommend that you follow the updated documentation.\n\nThe seller is responsible for suggesting new SKUs to be sold in the VTEX marketplace and also for informing the marketplace about changes in their SKUs that already exist in the marketplace. Both actions start with a catalog notification, which is made by this request.\n\nWith this notification, the seller is telling the marketplace that something has changed about a specific SKU, like price or inventory, or that this is a new SKU that the seller would like to offer to the marketplace.\n\nThere are two information expected by the marketplace in this request: the `sellerId`, which identifies the seller, and the `sellerSkuId`, which identifies the binding of the seller with the SKU.\n\nBoth information are passed through the request URL. The body of the request should be empty." provider: vtex method: POST path: "/api/catalog_system/pvt/skuseller/changenotification/{sellerId}/{sellerSkuId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } sellerId: { type: "string" } sellerSkuId: { type: "string" } } required: ["Accept", "Content-Type", "sellerId", "sellerSkuId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }