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

# Get Organization Folder

> Get one DialNexa organization folder by ID and verify its current name and workspace ownership.

<span data-api-safety-label="read-only"><Badge color="gray" size="sm" shape="pill">Read only</Badge></span>

Get an organization folder by ID to confirm its current name and that it belongs to the authenticated workspace. Deleted folders are not returned.

## Before you begin

Call [List Organization Folders](/docs/api-reference/v1/organization-folders/list) to obtain a current folder ID. Do not reuse an ID from a different workspace.

## Verify the result

A successful response includes the folder `id`, `name`, `organization_id`, and timestamps. Compare the returned `id` with the requested value before using it in another operation.

## Errors and recovery

* `401 Unauthorized` means the API key is missing or invalid.
* `404 Not Found` means the folder does not exist, was deleted, or belongs to another workspace. List folders again instead of retrying the same ID.

## Related endpoints

* [List Organization Folders](/docs/api-reference/v1/organization-folders/list): search active folders and resolve IDs.
* [List Agents](/docs/api-reference/v1/agents/list): list workspace agents.
* [Agent folders](/docs/agents/agent-folders): create and manage folders in the dashboard.


## OpenAPI

````yaml GET /v1/organization-folders/{id}
openapi: 3.0.0
info:
  title: DialNexa API
  description: Public `/v1` REST API for the DialNexa voice AI platform.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: Agents
  - name: Batch Calls
  - name: Calls
  - name: Knowledge Base
  - name: Languages
  - name: LLMs
  - name: Phone Numbers
  - name: Transcribers
  - name: Webhooks
  - name: Voices
  - name: Workflows
  - name: Workflow Leads
paths:
  /v1/organization-folders/{id}:
    get:
      tags:
        - Organization Folders
      summary: Get Organization Folder
      description: Returns one active organization folder by ID.
      operationId: getOrganizationFolder
      parameters:
        - name: id
          required: true
          in: path
          description: Organization folder ID.
          schema:
            type: string
            example: fld_abc123xyz789
      responses:
        '200':
          description: Organization folder returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationFolder'
        '401':
          description: Unauthorized - missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Folder not found in the authenticated organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearer: []
components:
  schemas:
    OrganizationFolder:
      type: object
      properties:
        id:
          type: string
          example: fld_abc123xyz789
        organization_id:
          type: string
          example: org_abc123xyz789
        name:
          type: string
          maxLength: 35
          example: Sales Agents
        is_deleted:
          type: boolean
          example: false
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - organization_id
        - name
        - is_deleted
        - created_at
        - updated_at
    ErrorResponse:
      type: object
      properties:
        statusCode:
          type: integer
          example: 400
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
          example: phone_number must be a valid E.164 phone number
        error:
          type: string
          example: Bad Request
      required:
        - statusCode
        - message
        - error
  securitySchemes:
    bearer:
      scheme: bearer
      type: http

````