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