> ## 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 liquidated transfer receipt by ID

> Returns the receipt for a liquidated (settled) transfer owned by the authenticated tech-platform partner. Unknown, foreign, and non-partner transfers all return 404.



## OpenAPI

````yaml https://api.dev.endaoment.org/oas-json get /v1/receipts/partner/transfer/liquidated/{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.0-dev
  contact: {}
servers:
  - url: https://api.dev.endaoment.org
    description: Dev (canary)
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/receipts/partner/transfer/liquidated/{id}:
    get:
      tags:
        - Partner Endpoints
      summary: Get liquidated transfer receipt by ID
      description: >-
        Returns the receipt for a liquidated (settled) transfer owned by the
        authenticated tech-platform partner. Unknown, foreign, and non-partner
        transfers all return 404.
      operationId: ReceiptsController_getPartnerLiquidatedTransferReceipt_v1
      parameters:
        - name: id
          required: true
          in: path
          description: The Endaoment internal transfer id
          schema:
            format: uuid
            example: 123e4567-e89b-12d3-a456-426614174000
            type: string
        - name: x-api-key
          in: header
          description: Partner API key used for authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Liquidated transfer receipt successfully retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerTransferReceiptDto'
        '401':
          description: A tech-platform API key is missing or invalid
        '404':
          description: Transfer not found or not owned by the authenticated partner
      security:
        - ApiKey: []
components:
  schemas:
    PartnerTransferReceiptDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        from:
          $ref: '#/components/schemas/PartnerEntityLabelDto'
        to:
          $ref: '#/components/schemas/PartnerEntityLabelDto'
        donor:
          $ref: '#/components/schemas/PartnerDonorDto'
        grant:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/PartnerGrantDto'
        totalAmountUsdc:
          type: string
        endaomentFeeUsdc:
          type: string
        proceedsUsdc:
          type: string
        createdAtDateUtc:
          type: string
          format: date-time
        status:
          type: string
          enum:
            - Pending
            - Completed
            - Cancelled
            - Reversed
        completedAtDateUtc:
          type: string
          format: date-time
      required:
        - id
        - from
        - to
        - donor
        - totalAmountUsdc
        - endaomentFeeUsdc
        - proceedsUsdc
        - createdAtDateUtc
        - status
        - completedAtDateUtc
    PartnerEntityLabelDto:
      type: object
      properties:
        name:
          type: string
        id:
          type: string
          format: uuid
        type:
          type: string
          enum:
            - fund
            - org
            - subproject
        org:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/PartnerOrgDetailsDto'
        fund:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/PartnerFundDetailsDto'
      required:
        - name
        - id
        - type
    PartnerDonorDto:
      type: object
      properties:
        fullName:
          type: string
        email:
          type: string
        address:
          $ref: '#/components/schemas/PartnerPersonAddressDto'
      required:
        - fullName
        - email
        - address
    PartnerGrantDto:
      type: object
      properties:
        description:
          type: string
        instructions:
          type: string
          nullable: true
        recommender:
          type: string
          nullable: true
      required:
        - description
        - instructions
        - recommender
    PartnerOrgDetailsDto:
      type: object
      properties:
        ein:
          type: string
          nullable: true
        address:
          $ref: '#/components/schemas/PartnerOrgAddressDto'
      required:
        - ein
        - address
    PartnerFundDetailsDto:
      type: object
      properties:
        advisor:
          $ref: '#/components/schemas/PartnerFundAdvisorDto'
      required:
        - advisor
    PartnerPersonAddressDto:
      type: object
      properties:
        line1:
          type: string
        line2:
          type: string
          nullable: true
        city:
          type: string
        state:
          type: string
        postalCode:
          type: string
        country:
          type: string
      required:
        - line1
        - line2
        - city
        - state
        - postalCode
        - country
    PartnerOrgAddressDto:
      type: object
      properties:
        line1:
          type: string
          nullable: true
        line2:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        state:
          type: string
          nullable: true
        postalCode:
          type: string
          nullable: true
        country:
          type: string
          nullable: true
      required:
        - line1
        - line2
        - city
        - state
        - postalCode
        - country
    PartnerFundAdvisorDto:
      type: object
      properties:
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
        address:
          $ref: '#/components/schemas/PartnerPersonAddressDto'
      required:
        - firstName
        - lastName
        - email
        - address
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key

````