> ## Documentation Index
> Fetch the complete documentation index at: https://docs.deepslate.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# List Organizations

> Retrieves a paginated list of organizations belonging to a specific vendor.



## OpenAPI

````yaml GET /api/v1/vendors/{vendorId}/organizations
openapi: 3.1.0
info:
  title: Deepslate
  description: OpenAPI specification of the public Deepslate API
  version: v1.0
servers:
  - url: https://app.deepslate.eu
    description: Generated server url
security: []
tags:
  - name: SIP Credentials Management
    description: API endpoints for managing SIP Credentials within an Organization
  - name: Assistant Management
    description: API endpoints for managing Assistants within an Organization
  - name: SIP Numbers Management
    description: API endpoints for managing SIP Numbers within an Organization
  - name: Agent Task Management
    description: API endpoints for retrieving Agent Tasks
  - name: Organization Management
    description: API endpoints for managing Organizations
  - name: Agent Management
    description: API endpoints for managing Agents within an Organization
  - name: LLM Generation Strategy Management
    description: >-
      API endpoints for managing LLM Generation Strategies within an
      Organization
paths:
  /api/v1/vendors/{vendorId}/organizations:
    get:
      tags:
        - Organization Management
      summary: List Organizations
      description: >-
        Retrieves a paginated list of organizations belonging to a specific
        vendor.
      operationId: getOrganizations
      parameters:
        - name: page
          in: query
          description: Page number of the requested page (0-indexed)
          required: false
          schema:
            type: integer
            default: 0
        - name: size
          in: query
          description: Number of items per page
          required: false
          schema:
            type: integer
            default: 20
        - name: sort
          in: query
          description: >-
            Sorting criteria in the format: property,(asc|desc). Default sort is
            'name,asc'. Multiple sort criteria are supported.
          required: false
          schema:
            type: string
            default: name,asc
          example: name,desc
        - name: vendorId
          in: path
          description: ID of the Vendor (UUID)
          required: true
          schema:
            type: string
          example: a1b2c3d4-e5f6-7890-1234-567890abcdef
      responses:
        '200':
          description: Successfully retrieved the list of organizations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationDescriptionPagedResponse'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden - User cannot access this vendor's organizations
        '404':
          description: Vendor not found
components:
  schemas:
    OrganizationDescriptionPagedResponse:
      type: object
      description: Paged API response wrapper
      properties:
        success:
          type: boolean
          description: Indicates if the request was successful
          example: true
        message:
          type: string
          description: Human-readable message
        data:
          type: array
          description: List of data items
          items:
            $ref: '#/components/schemas/OrganizationDescription'
        page:
          type: integer
          format: int32
          description: Current page number (0-indexed)
          example: 0
        size:
          type: integer
          format: int32
          description: Size of each page
          example: 20
        totalElements:
          type: integer
          format: int64
          description: Total number of elements
          example: 100
        totalPages:
          type: integer
          format: int32
          description: Total number of pages
          example: 5
        timestamp:
          type: string
          format: date-time
          description: Response timestamp in ISO-8601 format
          example: '2025-04-17T14:23:30Z'
        traceId:
          type: string
          description: Correlation or trace ID
      required:
        - page
        - size
        - success
        - timestamp
        - totalElements
        - totalPages
    OrganizationDescription:
      type: object
      description: >-
        Basic identifying information for an Organization, typically used in
        lists.
      properties:
        id:
          type: string
          description: Unique identifier of the organization (UUID).
          example: f0e9d8c7-b6a5-4321-fedc-ba9876543210
        companyName:
          type: string
          description: Name of the organization.
          example: Example Corp
      required:
        - companyName
        - id

````