AWS Marketplace Tags API

The Tags API from AWS Marketplace — 3 operation(s) for tags.

OpenAPI Specification

aws-marketplace-tags-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: AWS Marketplace Catalog Change Sets Tags API
  version: '2018-09-17'
  description: 'The AWS Marketplace Catalog API lets approved sellers programmatically

    view and update their AWS Marketplace product entities and change sets.

    All operations are REST POST requests to named paths, with the JSON

    request body containing input parameters. Requests are signed with AWS

    Signature Version 4 (SigV4).


    See https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html

    '
servers:
- url: https://catalog.marketplace.{region}.amazonaws.com
  description: AWS Marketplace Catalog regional endpoint
  variables:
    region:
      default: us-east-1
security:
- SigV4: []
tags:
- name: Tags
paths:
  /TagResource:
    post:
      tags:
      - Tags
      operationId: TagResource
      summary: Tag a resource
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
  /UntagResource:
    post:
      tags:
      - Tags
      operationId: UntagResource
      summary: Untag a resource
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
  /ListTagsForResource:
    post:
      tags:
      - Tags
      operationId: ListTagsForResource
      summary: List tags for a resource
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
components:
  responses:
    OK:
      description: Successful response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  requestBodies:
    JsonBody:
      required: true
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  securitySchemes:
    SigV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 signed Authorization header