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

# Get the status of a missing org report



## OpenAPI

````yaml https://api.endaoment.org/oas-json get /v1/missing-org-reports/{id}
openapi: 3.0.0
info:
  title: Endaoment API
  description: >-
    The official Endaoment API endpoints. Dev (canary) = newest features;
    Staging (stable) = pre-production.
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.endaoment.org
    description: Production
security: []
tags: []
paths:
  /v1/missing-org-reports/{id}:
    get:
      tags:
        - Missing Org Reports
      summary: Get the status of a missing org report
      operationId: MissingOrgReportController_getReportStatus
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MissingOrgReportStatusDto'
        '404':
          description: Report not found or not owned by the requesting tech platform
components:
  schemas:
    MissingOrgReportStatusDto:
      type: object
      properties:
        id:
          type: string
          description: Missing org report UUID
          example: 550e8400-e29b-41d4-a716-446655440000
        ein:
          type: string
          description: EIN of the reported organization, normalized to 9 digits
          example: '123456789'
        organizationName:
          type: string
          description: Name of the reported organization
          example: Example Nonprofit
        status:
          type: string
          description: Current status of the report
          enum:
            - submitted
            - approved
            - rejected
          example: submitted
        resolvedOrgId:
          type: string
          description: Resolved org UUID, present only when the report is approved
          example: 550e8400-e29b-41d4-a716-446655440001
        rejectionReason:
          type: string
          description: Free-text rejection reason, present only when the report is rejected
          example: Organization is not eligible for onboarding
      required:
        - id
        - ein
        - organizationName
        - status

````