Sha256: 3ffc6a6b4390d7de78a412f2b0fe2ca52122087656bb0e05acc01aec4ee3a07a

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

/teams:
  get:
    tags:
      - Teams
    summary: "List Teams"
    operationId: listTeams
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  type: array
                  items: 
                    $ref: "#/components/schemas/Team::Attributes"
                has_more:
                  type: boolean
/teams/{id}:
  get:
    tags:
      - Teams
    summary: "Fetch Team"
    operationId: fetchTeam
    parameters:
      - $ref: "#/components/parameters/id"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/Team::Attributes"
  put:
    tags:
      - Teams
    summary: "Update Team"
    operationId: updateTeam
    parameters:
      - $ref: "#/components/parameters/id"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/Team::Parameters"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bullet_train-api-1.1.9 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.8 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.6 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.5 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.4 app/views/api/v1/open_api/teams/_paths.yaml.erb