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

# Get cross-organization user transfer status (SuperAdmin only)

> Returns the status snapshot of an asynchronous cross-org user transfer (audit-log doc): status (in_progress/completed/failed), timestamps, original action payload, and error string if any. SUPERADMIN only.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/organizations/transfer/{transferId}/status
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/organizations/transfer/{transferId}/status:
    get:
      tags:
        - Organizations
      summary: Get cross-organization user transfer status (SuperAdmin only)
      description: >-
        Returns the status snapshot of an asynchronous cross-org user transfer
        (audit-log doc): status (in_progress/completed/failed), timestamps,
        original action payload, and error string if any. SUPERADMIN only.
      operationId: get_organizations_transfer_transferId_status
      parameters:
        - in: path
          name: transferId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Transfer status returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgTransferStatusResponse'
        '403':
          description: 'Forbidden: Only Superadmin can transfer users between organizations'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '404':
          description: Transfer not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    OrgTransferStatusResponse:
      type: object
      properties:
        transferId:
          type: string
        status:
          type: string
          enum:
            - in_progress
            - completed
            - failed
        action:
          type: string
        startedAt:
          type: string
          format: date-time
          nullable: true
        completedAt:
          type: string
          format: date-time
          nullable: true
        error:
          type: string
          nullable: true
        payload:
          type: object
          additionalProperties: true
      required:
        - transferId
        - status
      additionalProperties: true
      example:
        transferId: 5f7b1c2e8a1d4e0012c3b900
        status: completed
        action: org_transfer_execute
        startedAt: '2026-05-18T14:30:00.000Z'
        completedAt: '2026-05-18T14:34:12.000Z'
        error: null
        payload:
          userId: 5f7b1c2e8a1d4e0012c3b4a6
          targetOrganizationId: 5f7b1c2e8a1d4e0012c3b401
    OrganizationErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: string
      additionalProperties: true
      example:
        error: Organization not found
        details: No organization exists with the provided id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````