Airbyte public_users API

The public_users API from Airbyte — 1 operation(s) for public_users.

Operations 1

GET /users Airbyte List All Users Within an Organization #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/airbyte-public-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

airbyte-public-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: airbyte-api Public Users API
  version: 1.0.0
  description: Programmatically control Airbyte Cloud, OSS & Enterprise.
servers:
- url: https://api.airbyte.com/v1
  description: Airbyte API v1
tags:
- name: public_users
paths:
  /users:
    get:
      tags:
      - public_users
      summary: Airbyte List All Users Within an Organization
      description: Organization Admin user can list all users within the same organization. Also provide filtering on a list of user IDs or/and a list of user emails.
      parameters:
      - in: query
        name: organizationId
        schema:
          type: string
          format: UUID
        required: true
      - in: query
        name: ids
        schema:
          type: array
          items:
            type: string
            format: UUID
        description: List of user IDs to filter by
      - in: query
        name: emails
        schema:
          type: array
          items:
            type: string
            format: email
        description: List of user emails to filter by
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersResponse'
              examples:
                listUsersWithinAnOrganization200Example:
                  summary: Default listUsersWithinAnOrganization 200 response
                  x-microcks-default: true
                  value:
                    data: example
          description: List Users.
        '403':
          description: Not allowed
        '404':
          description: Not found
      operationId: listUsersWithinAnOrganization
      x-speakeasy-alias: listUsersWithinAnOrganization
      x-speakeasy-group: Users
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    UserId:
      type: string
      description: Internal Airbyte user ID
      format: uuid
      x-speakeasy-component: true
    UserResponse:
      title: Root Type for UserResponse
      description: Provides details of a single user in an organization.
      type: object
      required:
      - id
      - name
      - email
      properties:
        name:
          description: Name of the user
          type: string
        id:
          $ref: '#/components/schemas/UserId'
        email:
          type: string
          format: email
      x-speakeasy-entity: User
      x-speakeasy-param-suppress-computed-diff: true
      x-speakeasy-component: true
    UsersResponse:
      title: Root Type for UsersResponse
      description: List/Array of multiple users in an organization
      required:
      - data
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/UserResponse'
      x-speakeasy-component: true
      x-speakeasy-entity: User
      x-speakeasy-param-suppress-computed-diff: true