Sha256: 2406b093588c1da38244e9485901d942d0babb60f81108f89439de3ffe53eb6e

Contents?: true

Size: 1.61 KB

Versions: 23

Compression:

Stored size: 1.61 KB

Contents

/users:
  get:
    tags:
      - Users
    summary: "List Users"
    operationId: listUsers
    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/UserAttributes"
/users/{id}:
  get:
    tags:
      - Users
    summary: "Fetch User"
    operationId: fetchUser
    parameters:
      - $ref: "#/components/parameters/id"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/UserAttributes"
  put:
    tags:
      - Users
    summary: "Update User"
    operationId: updateUser
    parameters:
      - $ref: "#/components/parameters/id"
    requestBody:
      description: "Information about updated fields in User"
      required: true
      content:
        application/json:
          schema:
            type: object
            properties:
              user:
                type: object
                $ref: "#/components/schemas/UserParameters"
    responses:
      "404":
        description: "Not Found"
      "200":
        description: "OK"
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/UserAttributes"

Version data entries

23 entries across 23 versions & 1 rubygems

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