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

# Show an authorized patient's public organization



## OpenAPI

````yaml /openapi/nimbo_patient_portal.yml get /api/v1/patient_portal/people/{person_id}/organization
openapi: 3.1.0
info:
  title: Nimbo patient portal
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
security: []
tags:
  - name: Patient Portal
  - name: Patient portal authentication
paths:
  /api/v1/patient_portal/people/{person_id}/organization:
    get:
      tags:
        - Patient Portal
      summary: Show an authorized patient's public organization
      operationId: showPatientPortalPersonOrganization
      parameters:
        - name: person_id
          in: path
          required: true
          schema:
            type: integer
          example: 123
      responses:
        '200':
          description: Public organization data visible for the authorized patient.
          content:
            application/json:
              schema:
                type: object
                required:
                  - public_organization
                additionalProperties: false
                properties:
                  public_organization:
                    type: object
                    required:
                      - id
                      - name
                      - owner_id
                      - tax_name
                      - tax_rfc
                      - tax_address_one
                      - tax_address_two
                      - tax_zip_code
                      - tax_exterior_number
                      - tax_interior_number
                      - tax_city
                      - tax_state
                      - tax_country
                      - kind
                      - slug
                      - username
                      - telehealth_request_slug
                      - slug_organization_portal
                      - options
                      - logo
                      - waiting_room_configuration
                      - owner_country_code
                      - validations
                      - insurance_company_required
                      - landing_page_info
                      - subscription_expired
                      - available_chat
                      - patient_portal_chat_disabled
                    additionalProperties: false
                    properties:
                      id:
                        type: integer
                      name:
                        type:
                          - string
                          - 'null'
                      owner_id:
                        type:
                          - integer
                          - 'null'
                      tax_name:
                        type:
                          - string
                          - 'null'
                      tax_rfc:
                        type:
                          - string
                          - 'null'
                      tax_address_one:
                        type:
                          - string
                          - 'null'
                      tax_address_two:
                        type:
                          - string
                          - 'null'
                      tax_zip_code:
                        type:
                          - string
                          - 'null'
                      tax_exterior_number:
                        type:
                          - string
                          - 'null'
                      tax_interior_number:
                        type:
                          - string
                          - 'null'
                      tax_city:
                        type:
                          - string
                          - 'null'
                      tax_state:
                        type:
                          - string
                          - 'null'
                      tax_country:
                        type:
                          - string
                          - 'null'
                      kind:
                        type:
                          - string
                          - 'null'
                      slug:
                        type:
                          - string
                          - 'null'
                      username:
                        type:
                          - string
                          - 'null'
                      telehealth_request_slug:
                        type:
                          - string
                          - 'null'
                      slug_organization_portal:
                        type:
                          - string
                          - 'null'
                        example: demo-main
                      options:
                        type: object
                        additionalProperties: true
                      logo:
                        type: string
                        example: >-
                          https://s3.amazonaws.com/synthetic-assets/images/images/000/000/789/medium/clinic-logo.png
                      waiting_room_configuration:
                        type: object
                        additionalProperties: true
                      owner_country_code:
                        type:
                          - string
                          - 'null'
                        example: '+52'
                      validations:
                        type:
                          - object
                          - 'null'
                        additionalProperties: true
                      insurance_company_required:
                        type: boolean
                      landing_page_info:
                        type: object
                        additionalProperties: true
                      subscription_expired:
                        type:
                          - boolean
                          - 'null'
                      available_chat:
                        type:
                          - boolean
                          - 'null'
                      patient_portal_chat_disabled:
                        type: boolean
        '401':
          description: Missing, expired, invalid, or unauthorized patient portal token.
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                additionalProperties: false
                properties:
                  error:
                    type: string
              examples:
                unauthorized:
                  value:
                    error: Unauthorized
        '404':
          description: >-
            The requested resource was not found or is outside the authorized
            patient scope.
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                additionalProperties: false
                properties:
                  error:
                    type: string
              examples:
                not_found:
                  value:
                    error: Not found
      security:
        - PatientPortalToken: []
components:
  securitySchemes:
    PatientPortalToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >
        Patient portal JWT accepted either as a raw Authorization header value
        or as a Bearer token for client compatibility.

````