action gettyimages_get_v3_boards { label: "Get all boards that the user participates in" provider: gettyimages method: GET path: "/v3/boards" 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)." } board_relationship: { type: "string" enum: ["owned", "invited"] } page: { type: "integer" format: "int32" description: "Request results starting at a page number (default is 1)." } pageSize: { type: "integer" format: "int32" description: "Request number of boards to return in each page. (default is 30)." } sort_order: { type: "string" enum: ["date_last_updated_descending", "date_last_updated_ascending", "name_ascending", "name_decending"] } } additionalProperties: false } output: { type: "object" properties: { board_count: { type: "integer" format: "int32" } boards: { type: "array" items: { type: "object" properties: { asset_count: { type: "integer" format: "int32" } board_relationship: { type: "string" } date_created: { type: "string" format: "date-time" } date_last_updated: { type: "string" format: "date-time" } description: { type: "string" } hero_asset: { type: "object" properties: { asset_type: { type: "string" } date_added: { type: "string" format: "date-time" } display_sizes: { type: "array" items: { type: "object" properties: { name: { type: "string" } uri: { type: "string" } } additionalProperties: false } } id: { type: "string" } } additionalProperties: false } id: { type: "string" } name: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }