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

# Get a person

> Returns a single person by ID. Returns 404 if the person isn't reachable by this key.



## OpenAPI

````yaml /api-reference/external_api.openapi.json get /persons/{party_id}
openapi: 3.1.0
info:
  title: Monterey External Reporting API
  description: >-
    Org-scoped, API-key-authenticated reporting endpoints for Monterey Financial
    clients.
  version: 0.1.0
servers:
  - url: https://api.montereyfinancial.app
    description: Production
security:
  - BearerApiKey: []
paths:
  /persons/{party_id}:
    get:
      tags:
        - Persons
      summary: Get a person
      description: >-
        Returns a single person by ID. Returns 404 if the person isn't reachable
        by this key.
      operationId: get_person_persons__party_id__get
      parameters:
        - name: party_id
          in: path
          required: true
          schema:
            type: string
            title: Party Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PersonRow'
        '401':
          description: Missing or invalid API key.
        '403':
          description: organization_id outside the key's allowlist.
        '404':
          description: Resource not in scope or does not exist.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerApiKey: []
components:
  schemas:
    PersonRow:
      properties:
        id:
          type: string
          title: Id
          description: The person's unique ID.
        display_name:
          type: string
          title: Display Name
        is_active:
          type: boolean
          title: Is Active
      type: object
      required:
        - id
        - display_name
        - is_active
      title: PersonRow
      description: An individual party — typically a borrower on one or more accounts.
      examples:
        - display_name: Jane Smith
          id: 01J6WV0U1T2S3R4Q5P6N7M8L9K
          is_active: true
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
      description: >-
        Parameter-validation error (HTTP 422). `detail` lists each violated
        constraint with its location, message, and type.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
      description: >-
        A single parameter-validation failure: `loc` is the path to the
        offending input, `msg` is human-readable, and `type` is the rule that
        failed.
  securitySchemes:
    BearerApiKey:
      type: http
      description: Static API key issued via the client portal. Treat it like a password.
      scheme: bearer
      bearerFormat: ApiKey

````