Sha256: 1b5f4db5c0298944d1c8409ae8b6ec1abfef91e5ec82216bd6eef69d123dadc7

Contents?: true

Size: 1.61 KB

Versions: 23

Compression:

Stored size: 1.61 KB

Contents

/teams:
  get:
    tags:
      - Teams
    summary: "List Teams"
    operationId: listTeams
    parameters:
      - $ref: "#/components/parameters/after"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        headers:
          Pagination-Next:
            $ref: "#/components/headers/PaginationNext"
          Link:
            $ref: "#/components/headers/Link"
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: "#/components/schemas/TeamAttributes"
/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/TeamAttributes"
  put:
    tags:
      - Teams
    summary: "Update Team"
    operationId: updateTeam
    parameters:
      - $ref: "#/components/parameters/id"
    requestBody:
      description: "Information about updated fields in Team"
      required: true
      content:
        application/json:
          schema:
            type: object
            properties:
              team:
                type: object
                $ref: "#/components/schemas/TeamParameters"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/TeamAttributes"

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
bullet_train-api-1.2.22 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.21 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.20 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.19 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.18 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.17 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.16 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.15 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.14 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.13 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.12 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.11 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.10 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.9 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.8 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.7 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.6 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.5 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.4 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.2.3 app/views/api/v1/open_api/teams/_paths.yaml.erb