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

# Retrieve a specific organization



## OpenAPI

````yaml en/openapi/v3-current/ledger.yaml get /v1/organizations/{id}
openapi: 3.1.0
info:
  title: Midaz Ledger API
  version: 4.0.0
servers:
  - url: /
security: []
tags:
  - name: Account Types (v1)
  - name: Account Types (v2)
  - name: Accounts (v1)
  - name: Accounts (v2)
  - name: Asset Rates (v1)
  - name: Assets (v1)
  - name: Assets (v2)
  - name: Balances (v1)
  - name: Balances (v2)
  - name: Billing Calculate (v2)
  - name: Billing Packages (v2)
  - name: Composition (v2)
  - name: Encryption (v2)
  - name: Fees (v2)
  - name: Holders (v2)
  - name: Instruments (v2)
  - name: Ledgers (v1)
  - name: Ledgers (v2)
  - name: Metadata Indexes (v1)
  - name: Metadata Indexes (v2)
  - name: Operation Routes (v1)
  - name: Operation Routes (v2)
  - name: Operations (v1)
  - name: Operations (v2)
  - name: Organizations (v1)
  - name: Organizations (v2)
  - name: Packages (v2)
  - name: Portfolios (v1)
  - name: Portfolios (v2)
  - name: Protection (v2)
  - name: Segments (v1)
  - name: Segments (v2)
  - name: Transaction Routes (v1)
  - name: Transaction Routes (v2)
  - name: Transactions (v1)
  - name: Transactions (v2)
paths:
  /v1/organizations/{id}:
    get:
      tags:
        - Organizations (v1)
      summary: Retrieve a specific organization
      operationId: getOrganizationByID
      parameters:
        - description: Organization ID (UUID)
          in: path
          name: id
          required: true
          schema:
            description: Organization ID (UUID)
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Organization'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LegacyError'
          description: Error
      deprecated: true
      security:
        - BearerAuth: []
components:
  schemas:
    Organization:
      additionalProperties: false
      properties:
        address:
          $ref: '#/components/schemas/Address'
        createdAt:
          examples:
            - '2021-01-01T00:00:00Z'
          format: date-time
          type: string
        deletedAt:
          examples:
            - '2021-01-01T00:00:00Z'
          format: date-time
          type:
            - string
            - 'null'
        doingBusinessAs:
          examples:
            - Lerian FS
          maxLength: 256
          type:
            - string
            - 'null'
        id:
          examples:
            - 00000000-0000-0000-0000-000000000000
          format: uuid
          type: string
        legalDocument:
          examples:
            - '123456789012345'
          maxLength: 256
          type: string
        legalName:
          examples:
            - Lerian Financial Services Ltd.
          maxLength: 256
          type: string
        metadata:
          additionalProperties: {}
          type: object
        parentOrganizationId:
          format: uuid
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/Status'
        updatedAt:
          examples:
            - '2021-01-01T00:00:00Z'
          format: date-time
          type: string
      required:
        - id
        - parentOrganizationId
        - legalName
        - doingBusinessAs
        - legalDocument
        - address
        - status
        - createdAt
        - updatedAt
        - deletedAt
      type: object
    LegacyError:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable midaz error code. Identical to the code /v2
            returns for the same condition.
          examples:
            - '0065'
          type: string
        entityType:
          description: >-
            The domain entity the error concerns. Present only on
            field-validation errors.
          examples:
            - Account
          type: string
        fields:
          additionalProperties: {}
          description: >-
            Per-field validation detail, keyed by field name. The value is the
            violation message for a known field and the offending value for an
            unexpected one, so it is not always a string. The /v2 contract
            carries these as the 'errors' array.
          type: object
        message:
          description: >-
            Human-readable explanation of this occurrence. The /v2 contract
            carries this as 'detail'.
          type: string
        title:
          description: Short, human-readable summary of the error.
          examples:
            - Invalid Path Parameter
          type: string
      required:
        - title
        - message
        - code
      type: object
    Address:
      additionalProperties: false
      properties:
        city:
          examples:
            - New York
          maxLength: 100
          type: string
        country:
          examples:
            - US
          maxLength: 2
          minLength: 2
          type: string
        description:
          examples:
            - Home
          maxLength: 100
          type: string
        line1:
          examples:
            - 123 Financial Avenue
          maxLength: 256
          type: string
        line2:
          examples:
            - Suite 1500
          maxLength: 256
          type:
            - string
            - 'null'
        state:
          examples:
            - NY
          maxLength: 100
          type: string
        zipCode:
          examples:
            - '10001'
          maxLength: 20
          type: string
      required:
        - line1
        - line2
        - zipCode
        - city
        - state
        - country
      type: object
    Status:
      additionalProperties: false
      properties:
        code:
          enum:
            - ACTIVE
            - INACTIVE
            - PENDING
            - SUSPENDED
            - DELETED
          examples:
            - ACTIVE
          maxLength: 100
          type: string
        description:
          examples:
            - Active status
          maxLength: 256
          type:
            - string
            - 'null'
      required:
        - code
        - description
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````