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

# Upload determination letter



## OpenAPI

````yaml https://api.endaoment.org/oas-json post /v1/missing-org-reports/determination-letter
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.0-dev
  contact: {}
servers:
  - url: https://api.endaoment.org
    description: Production
security: []
tags:
  - name: Partner Endpoints
    description: Tech-platform partner server-to-server APIs
  - name: Authentication
    description: OAuth callers, API keys, and session verification
  - name: Funds
    description: Donor-advised fund lifecycle
  - name: Donations
    description: Donation pledges, supported assets, and impact totals
  - name: Portfolios
    description: Investment portfolio catalog
  - name: Nonprofit Organizations
    description: Nonprofit lookup, subprojects, and missing-org intake
  - name: Grant Transfers
    description: Grant and entity transfers
  - name: Collaboration
    description: Collaborator recommendations and fund collaboration
  - name: Activity
    description: Public and scoped activity feeds
paths:
  /v1/missing-org-reports/determination-letter:
    post:
      tags:
        - Nonprofit Organizations
      summary: Upload determination letter
      operationId: MissingOrgReportController_uploadDeterminationLetter_v1
      parameters: []
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeterminationLetterUploadResultDto'
components:
  schemas:
    DeterminationLetterUploadResultDto:
      type: object
      properties:
        storageKey:
          type: string
          description: Storage key to include in the report submission request body
          example: >-
            determination-letters/550e8400-e29b-41d4-a716-446655440000/My_Letter.pdf
      required:
        - storageKey

````