Skip to main content
POST
/
api
/
org-snapshots
/
{id}
/
apply
Apply an organization snapshot
curl --request POST \
  --url https://your-instance.example.com/api/org-snapshots/{id}/apply \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orgName": "NewOrg Holdings",
  "orgPhone": "+14155550100",
  "orgAddress": "100 King St W, Toronto, ON",
  "firstUser": {
    "email": "admin@neworg.example",
    "password": "TempPass!2026",
    "fullName": "Morgan Admin",
    "designation": "Operations Lead"
  }
}
'
{
  "message": "Snapshot applied",
  "result": {
    "organizationId": "64ee9a8b1e7f2a0011223400",
    "organizationName": "NewOrg Holdings",
    "userId": "64ee9a8b1e7f2a0011223499",
    "userEmail": "admin@neworg.example",
    "cloned": {
      "pipelines": 3,
      "automations": 12,
      "prompts": 20,
      "templates": 30
    }
  }
}

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

id
string
required

Body

application/json
orgName
string
required
orgPhone
string
required

Organization phone (must start with +1 or +91 followed by 10 digits).

orgAddress
string
required
firstUser
object
Example:
{
"email": "admin@neworg.example",
"password": "TempPass!2026",
"fullName": "Morgan Admin",
"phoneNumber": "+14155550111",
"designation": "Operations Lead"
}

Response

Snapshot applied – new organization created

message
string
result
object