--- swagger: "2.0" x-collection-name: Getty Images x-complete: 0 info: title: Getty Images Delete a comment from a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq).\r\nUse this endpoint to delete a comment from a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." version: 1.0.0 host: api.gettyimages.com basePath: / schemes: - http produces: - application/json consumes: - application/json paths: /v3/boards: get: summary: Get All Boards description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to retrieve all Boards available for a user.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_GetAllBoards x-api-path-slug: v3boards-get parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: query name: board_relationship description: Search for boards the user owns or has been invited to as an editor - in: query name: page description: Request results starting at a page number (default is 1) - in: query name: pageSize description: Request number of boards to return in each page - in: query name: sort_order description: Sort the list of boards by last update date or name responses: 200: description: OK tags: - Images - Boards post: summary: Create Board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to create a Board by a specific id.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key.\r\n\r\n**NOTE:** *The input to this endpoint is not sanitized in any way, so it is the responsibility of the client to ensure that it is properly formatted and guards against malicious data (for example cross-site scripting attacks or HTML injection) when accessing the data.*" operationId: Boards_CreateBoard x-api-path-slug: v3boards-post parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: body name: new_board description: Specify a name and description of the board to create (name is required) schema: $ref: '#/definitions/holder' responses: 200: description: OK tags: - Images - Boards /v3/boards/{board_id}: delete: summary: Delete Board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to delete a Board by a specific id.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_DeleteBoard x-api-path-slug: v3boardsboard-id-delete parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards get: summary: Get Board Assets description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to retrieve a Board by a specific id.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_GetBoard x-api-path-slug: v3boardsboard-id-get parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards put: summary: Update Board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to update a Board by a specific id.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key.\r\n\r\n**NOTE:** *The input to this endpoint is not sanitized in any way, so it is the responsibility of the client to ensure that it is properly formatted and guards against malicious data (for example cross-site scripting attacks or HTML injection) when accessing the data.*" operationId: Boards_UpdateBoard x-api-path-slug: v3boardsboard-id-put parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id - in: body name: board_info description: Specify a new name and description for the board (name is required) schema: $ref: '#/definitions/holder' responses: 200: description: OK tags: - Images - Boards /v3/boards/{board_id}/assets: delete: summary: Remove Assets From Board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq).\r\nUse this endpoint to remove a set of assets from a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_RemoveAssets x-api-path-slug: v3boardsboard-idassets-delete parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: query name: asset_ids description: List the assets to be removed from the board - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards put: summary: Add Assets to a Board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq).\r\nUse this endpoint to add a set of assets to a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_AddAssets x-api-path-slug: v3boardsboard-idassets-put parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: body name: board_assets description: List assets to add to the board schema: $ref: '#/definitions/holder' - in: path name: board_id responses: 200: description: OK tags: - Images - Boards /v3/boards/{board_id}/assets/{asset_id}: delete: summary: Remove an asset from a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to remove an asset from a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_RemoveAsset x-api-path-slug: v3boardsboard-idassetsasset-id-delete parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: path name: asset_id - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards put: summary: Add an asset to a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place.\r\nMore information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to add an asset to a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource.\r\nPlease see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_AddAsset x-api-path-slug: v3boardsboard-idassetsasset-id-put parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: path name: asset_id - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards /v3/boards/{board_id}/comments: get: summary: Get comments from a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq). Use this endpoint to retrieve all comments for a specific board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_GetComments x-api-path-slug: v3boardsboard-idcomments-get parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id responses: 200: description: OK tags: - Images - Boards - Comments post: summary: Add a comment to a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq).\r\nUse this endpoint to add a comment to a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_AddComment x-api-path-slug: v3boardsboard-idcomments-post parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id - in: body name: comment description: Comment to be added to the board schema: $ref: '#/definitions/holder' responses: 200: description: OK tags: - Images - Boards - Comments /v3/boards/{board_id}/comments/{comment_id}: delete: summary: Delete a comment from a board description: "Boards are where you collect, curate, collaborate on and manage photo and video assets in one place. More information on the [Boards FAQ](http://www.gettyimages.com/boards/faq).\r\nUse this endpoint to delete a comment from a board.\r\n\r\nYou'll need an API key and a [Resource Owner Grant](http://developers.gettyimages.com/en/authorization-faq.html) access token to use this resource. Please see our [Getting Started](http://developers.gettyimages.com/en/getting-started.html) page for more information on how to sign up for an API key." operationId: Boards_DeleteComment x-api-path-slug: v3boardsboard-idcommentscomment-id-delete parameters: - in: header name: Accept-Language description: Provide a header to specify the language of result values - in: header name: Authorization description: Provide access token in the format of Bearer {token} - in: path name: board_id - in: path name: comment_id responses: 200: description: OK tags: - Images - Boards - Comments x-streamrank: polling_total_time_average: 0 polling_size_download_average: 0 streaming_total_time_average: 0 streaming_size_download_average: 0 change_yes: 0 change_no: 0 time_percentage: 0 size_percentage: 0 change_percentage: 0 last_run: "" days_run: 0 minute_run: 0 ---