action vtex_get_all_collections { label: "Get All Collections" description: "Retrieves a list of all collections matching a filter." provider: vtex method: GET path: "/api/catalog_system/pvt/collection/search" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } orderByAsc: { type: "boolean" } page: { type: "integer" } pageSize: { type: "integer" } } required: ["Accept", "Content-Type", "orderByAsc", "page", "pageSize"] additionalProperties: false } output: { type: "object" additionalProperties: true } }