Skip to main content
GET
/
api
/
org-snapshots
/
{id}
Get an organization snapshot
curl --request GET \
  --url https://your-instance.example.com/api/org-snapshots/{id} \
  --header 'Authorization: Bearer <token>'
{
  "snapshot": {
    "_id": "665f1a0c0e0a4b001a2c9f90",
    "name": "Production baseline 2026-05",
    "counts": {
      "pipelines": 3,
      "automations": 12,
      "prompts": 20,
      "templates": 30
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Snapshot returned

snapshot
object
required
Example:
{
"_id": "665f1a0c0e0a4b001a2c9f90",
"name": "Production baseline 2026-05",
"description": "Reference Acme Corp configuration for new-tenant onboarding.",
"sourceOrgName": "Acme Corp",
"sourceUserEmail": "alex@acme.example",
"sourceUserName": "Alex Rep",
"counts": {
"pipelines": 3,
"automations": 12,
"prompts": 20,
"templates": 30
},
"createdByName": "Pat Superadmin",
"createdAt": "2026-05-15T09:00:00.000Z",
"updatedAt": "2026-05-15T09:00:00.000Z",
"sourceOrgId": "64ee9a8b1e7f2a0011223344",
"sourceUserId": "64ee9a8b1e7f2a0011223399",
"pipelines": [{ "name": "Sales Funnel" }],
"automations": [
{
"name": "Move to Contacted on first reply"
}
],
"prompts": [{ "name": "Default warm-up prompt" }],
"templates": [
{ "name": "Intro - new lead", "type": "sms" }
]
}