action gettyimages_get_v3_collections { label: "Gets collections applicable for the customer." description: "Use this endpoint to retrieve collections associated with your Getty Images account. To browse available collections see our [Image collections page]( http://www.gettyimages.com/creative-images/collections).\n\nYou'll need an API key and access token to use this resource.\n" provider: gettyimages method: GET path: "/v3/collections" encoding: json input: { type: "object" properties: { "Accept-Language": { type: "string" description: "Provide a header to specify the language of result values. Supported values: cs (iStock only), de, en-GB, en-US, es, fi (iStock only), fr, hu (iStock only), id (iStock only), it, ja, ko (creative assets only), nl, pl (creative assets only), pt-BR, pt-PT, ro (iStock only), ru (creative assets only), sv, th (iStock only), tr, uk (iStock only), vi (iStock only), zh-HK (creative assets only)." } } additionalProperties: false } output: { type: "object" properties: { collections: { type: "array" items: { type: "object" properties: { asset_family: { type: "string" } code: { type: "string" } id: { type: "integer" format: "int32" } license_model: { type: "string" } name: { type: "string" } product_types: { type: "array" items: { type: "string" } } } additionalProperties: false } } } additionalProperties: false } }