action gettyimages_get_v3_boards_board_id_comments { label: "Get comments from a board" provider: gettyimages method: GET path: "/v3/boards/{board_id}/comments" 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: "Specify the board to retrieve comments from." } } required: ["board_id"] additionalProperties: false } output: { type: "object" properties: { comments: { type: "array" items: { type: "object" properties: { created_by: { type: "object" properties: { first_name: { type: "string" } last_name: { type: "string" } } additionalProperties: false } date_created: { type: "string" format: "date-time" } id: { type: "string" } permissions: { type: "object" properties: { can_delete_comment: { type: "boolean" } } additionalProperties: false } text: { type: "string" } } additionalProperties: false } } permissions: { type: "object" properties: { can_add_comment: { type: "boolean" } } additionalProperties: false } } additionalProperties: false } }