> ## 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.

# Submit a missing org report from an authenticated tech platform



## OpenAPI

````yaml https://api.endaoment.org/oas-json post /v1/missing-org-reports/tech-platform
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/tech-platform:
    post:
      tags:
        - Missing Org Reports
      summary: Submit a missing org report from an authenticated tech platform
      operationId: MissingOrgReportController_submitTechPlatformReport
      parameters:
        - name: x-api-key
          in: header
          description: Tech Platform API Key
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitTechPlatformMissingOrgReportDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MissingOrgReportCreatedDto'
        '409':
          description: An organization with the provided EIN already exists
components:
  schemas:
    SubmitTechPlatformMissingOrgReportDto:
      type: object
      properties:
        ein:
          type: string
          description: EIN of the reported organization, with or without hyphen
          example: 12-3456789
        organizationName:
          type: string
          description: Name of the reported organization
          example: Example Nonprofit
        contactEmail:
          type: string
          description: Email address of the person submitting the report
          example: submitter@example.org
        websiteUrl:
          type: string
          description: Optional website URL of the reported organization
          example: https://example.org
        additionalDetails:
          type: string
          description: Optional free-text notes from the submitter
          example: We are a church in Curitiba, Brazil.
        determinationLetterStorageKey:
          type: string
          description: Storage key returned by the determination letter upload endpoint
          example: >-
            determination-letters/550e8400-e29b-41d4-a716-446655440000/My_Letter.pdf
        determinationLetterUrl:
          type: string
          description: External determination letter URL provided by an integrator
          example: https://example.org/determination-letter.pdf
      required:
        - ein
        - organizationName
        - contactEmail
    MissingOrgReportCreatedDto:
      type: object
      properties:
        id:
          type: string
          description: Missing org report UUID
          example: 550e8400-e29b-41d4-a716-446655440000
      required:
        - id

````