Sha256: 815babe8741193df9dc1a069264d25f2621759857e0764140a75ce933fe5119a

Contents?: true

Size: 1.23 KB

Versions: 68

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/TeamAttributes"
                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/TeamAttributes"
  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/TeamParameters"

Version data entries

68 entries across 63 versions & 1 rubygems

Version Path
bullet_train-api-1.1.14 app/views/api/v2/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.13 app/views/api/v2/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.13 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.12 app/views/api/v2/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.12 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.11 app/views/api/v2/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.11 app/views/api/v1/open_api/teams/_paths.yaml.erb
bullet_train-api-1.1.10 app/views/api/v1/open_api/teams/_paths.yaml.erb