openapi: 3.1.0 info: title: Couchbase Analytics Service REST Allowed CIDRs Users API description: The Couchbase Analytics Service REST API provides access to the Analytics service for running complex analytical queries on operational data without impacting performance of key-value operations. It supports SQL++ queries for analytics, management of links to external data sources, and configuration of user-defined libraries. The service enables real-time analytics on JSON data alongside transactional workloads. version: '7.6' contact: name: Couchbase Support url: https://support.couchbase.com termsOfService: https://www.couchbase.com/terms-of-use servers: - url: https://localhost:8095 description: Analytics Service (default port) - url: https://localhost:18095 description: Analytics Service (SSL) security: - basicAuth: [] tags: - name: Users description: Endpoints for managing users within a Capella organization. paths: /v4/organizations/{organizationId}/users: get: operationId: listCapellaUsers summary: List organization users description: Returns the list of users in the specified organization. tags: - Users parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/page' - $ref: '#/components/parameters/perPage' responses: '200': description: Successful retrieval of users content: application/json: schema: $ref: '#/components/schemas/PaginatedResponse' '401': description: Unauthorized access '429': description: Rate limit exceeded components: parameters: page: name: page in: query required: false description: Page number for pagination schema: type: integer minimum: 1 default: 1 perPage: name: perPage in: query required: false description: Number of items per page schema: type: integer minimum: 1 maximum: 100 default: 25 organizationId: name: organizationId in: path required: true description: The UUID of the organization schema: type: string format: uuid schemas: PaginatedResponse: type: object description: Paginated response wrapper properties: cursor: type: object description: Pagination cursor information properties: pages: type: object properties: page: type: integer description: Current page number next: type: integer description: Next page number previous: type: integer description: Previous page number last: type: integer description: Last page number perPage: type: integer description: Items per page totalItems: type: integer description: Total number of items data: type: array description: List of items items: {} securitySchemes: basicAuth: type: http scheme: basic description: HTTP Basic Authentication using Couchbase Server credentials. externalDocs: description: Couchbase Analytics Service REST API Documentation url: https://docs.couchbase.com/server/current/analytics/rest-analytics.html