action vtex_post_create_collection { label: "Create Collection" description: "Creates a new collection." provider: vtex method: POST path: "/api/catalog/pvt/collection/" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } DateFrom: { type: "string" description: "Collection start date and time. If a future date and time are set, the collection will have a scheduled status." } DateTo: { type: "string" description: "Collection end date and time." } Description: { type: "string" description: "Collection's description for internal use, with the collection's details. It will not be used for search engines." } Highlight: { type: "boolean" description: "Option if you want the collection to highlight specific products using a tag." } Name: { type: "string" description: "Collection's Name." } Searchable: { type: "boolean" description: "Option making the collection searchable in the store." } } required: ["Accept", "Content-Type", "DateFrom", "DateTo", "Description", "Highlight", "Name", "Searchable", "TotalProducts", "Type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }