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

# Get a stakeholder

> Base ViewSet para modelos que referencian a Stakeholder.
Enriquecemos el queryset con joins y un campo 'stakeholder_name',
y aplicamos automáticamente el filtro por member_id si está en el request.



## OpenAPI

````yaml /api-reference/openapi.json get /stakeholder/stakeholder/{id}/
openapi: 3.0.3
info:
  title: Fail Fast API
  version: v1
  description: >-
    REST API for the Fail Fast platform. Authenticate with a workspace API key
    sent as a bearer token. Every response uses the `{message, error, data}`
    envelope.
servers:
  - url: https://api.failfast.ai
security: []
paths:
  /stakeholder/stakeholder/{id}/:
    get:
      tags:
        - Stakeholders
      summary: Get a stakeholder
      description: >-
        Base ViewSet para modelos que referencian a Stakeholder.

        Enriquecemos el queryset con joins y un campo 'stakeholder_name',

        y aplicamos automáticamente el filtro por member_id si está en el
        request.
      operationId: stakeholder_stakeholder_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          description: A UUID string identifying this stakeholder.
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - error
                  - data
                properties:
                  message:
                    type: string
                    description: Human-readable outcome of the request.
                  error:
                    type: boolean
                    description: true when the request failed.
                    example: false
                  data:
                    $ref: '#/components/schemas/Stakeholder'
          description: ''
      security:
        - apiKey: []
components:
  schemas:
    Stakeholder:
      type: object
      description: |-
        A ModelSerializer that takes an additional `fields` argument that
        controls which fields should be displayed.
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          readOnly: true
        person_or_company_member_id:
          type: string
          readOnly: true
        person_or_company_id:
          type: string
          readOnly: true
        is_company:
          type: boolean
          readOnly: true
        document_type_name:
          type: string
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        deleted_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        audit_status:
          allOf:
            - $ref: '#/components/schemas/AuditStatusEnum'
          readOnly: true
        document_number:
          type: string
        verification_digit:
          type: string
          nullable: true
          maxLength: 4
        created_by:
          type: string
          format: uuid
          readOnly: true
        updated_by:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        deleted_by:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        document_type:
          type: string
          format: uuid
        geographic_location:
          type: string
          format: uuid
          nullable: true
      required:
        - audit_status
        - created_at
        - created_by
        - deleted_at
        - deleted_by
        - document_number
        - document_type
        - document_type_name
        - id
        - is_company
        - name
        - person_or_company_id
        - person_or_company_member_id
        - updated_at
        - updated_by
    AuditStatusEnum:
      enum:
        - C
        - U
        - D
      type: string
      description: |-
        * `C` - Created
        * `U` - Updated
        * `D` - Deleted
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Workspace API key sent as a bearer token: `Authorization: Bearer
        failfast_...`. Create keys in Settings -> Workspace -> API Keys.

````