action vtex_get_skuseller { label: "Get details of a seller's SKU" 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\nRetrieves the details of a seller's SKU given a seller ID and the SKU ID in the seller's store. \n## Response body example \n \n```json \n{ \n \"IsPersisted\": true, \n \"IsRemoved\": false, \n \"SkuSellerId\": 799, \n \"SellerId\": \"myseller\", \n \"StockKeepingUnitId\": 50, \n \"SellerStockKeepingUnitId\": \"502\", \n \"IsActive\": true, \n \"UpdateDate\": \"2018-10-11T04:52:42.1\", \n \"RequestedUpdateDate\": null \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/skuseller/{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" required: ["IsActive", "IsPersisted", "IsRemoved", "RequestedUpdateDate", "SellerId", "SellerStockKeepingUnitId", "SkuSellerId", "StockKeepingUnitId", "UpdateDate"] properties: { IsActive: { type: "boolean" description: "Defines if the SKU binding is active." } IsPersisted: { type: "boolean" description: "Defines if the seller is persisted." } IsRemoved: { type: "boolean" description: "Defines if the seller is removed." } RequestedUpdateDate: { type: "string" description: "Date when an SKU binding update was requested for the last time, in UTC format." } SellerId: { type: "string" description: "ID that identifies the seller in the marketplace. It can be the same as the seller name or a unique number. Check the **Sellers management** section in the Admin to get the correct ID." } SellerStockKeepingUnitId: { type: "string" description: "SKU seller ID." } SkuSellerId: { type: "integer" format: "int32" description: "SKU ID in the seller's store." } StockKeepingUnitId: { type: "integer" format: "int32" description: "SKU ID in the VTEX marketplace." } UpdateDate: { type: "string" description: "Date when the SKU binding was updated for the last time, in UTC format." } } } }