Skip to main content
GET
/
api
/
organizations
/
transfer
/
{transferId}
/
status
Get cross-organization user transfer status (SuperAdmin only)
curl --request GET \
  --url https://your-instance.example.com/api/organizations/transfer/{transferId}/status \
  --header 'Authorization: Bearer <token>'
{
  "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"
  }
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transferId
string
required

Response

Transfer status returned

transferId
string
required
status
enum<string>
required
Available options:
in_progress,
completed,
failed
action
string
startedAt
string<date-time> | null
completedAt
string<date-time> | null
error
string | null
payload
object