action gettyimages_get_v3_boards_board_id { label: "Get assets and metadata for a specific board" provider: gettyimages method: GET path: "/v3/boards/{board_id}" 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_id: { type: "string" description: "Retrieve details for a specific board." } } required: ["board_id"] additionalProperties: false } output: { type: "object" properties: { asset_count: { type: "integer" format: "int32" } assets: { type: "array" items: { 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 } } comment_count: { type: "integer" format: "int32" } date_created: { type: "string" format: "date-time" } date_last_updated: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } links: { type: "object" properties: { invitation: { type: "string" } share: { type: "string" } } additionalProperties: false } name: { type: "string" } permissions: { type: "object" properties: { can_add_assets: { type: "boolean" } can_delete_board: { type: "boolean" } can_invite_to_board: { type: "boolean" } can_remove_assets: { type: "boolean" } can_update_description: { type: "boolean" } can_update_name: { type: "boolean" } } additionalProperties: false } } additionalProperties: false } }