action vtex_post_api_catalog_pvt_collection_collection_id_position { label: "Reposition SKU on the Subcollection" description: " >⚠️ There are two ways to configure collections, through Legacy CMS Portal or using the Beta Collection module. This endpoint is compatible with [collections configured through the Legacy CMS Portal](https://help.vtex.com/en/tutorial/adding-collections-cms--2YBy6P6X0NFRpkD2ZBxF6L).\n\nEdits the position of an SKU that already exists in the Subcollection, which is a [Group](https://help.vtex.com/en/tutorial/adding-collections-cms--2YBy6P6X0NFRpkD2ZBxF6L#group-types) within a Collection. \n## Request body example \n \n```json \n{ \n \"skuId\": 1, \n \"position\": 1, \n \"subCollectionId\": 17 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/collection/{collectionId}/position" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } collectionId: { type: "integer" } position: { type: "integer" description: "SKU position." } skuId: { type: "integer" description: "SKU ID." } subCollectionId: { type: "integer" description: "Subcollection ID." } } required: ["Accept", "Content-Type", "collectionId", "position", "skuId", "subCollectionId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }