Skip to main content
GET
/
tenants
/
{id}
/
onboarding
Get onboarding progress
curl --request GET \
  --url https://api.engagefabric.com/tenants/{id}/onboarding \
  --header 'Authorization: Bearer <token>'
{
  "steps": [
    {
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "hasProject": true,
  "hasApiKey": true,
  "hasEvent": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.engagefabric.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token for admin console authentication

Path Parameters

id
string
required

Tenant UUID

Response

200 - application/json

Onboarding progress

status
enum<string>
Available options:
PENDING,
EMAIL_VERIFIED,
PROJECT_CREATED,
FIRST_EVENT_SENT,
COMPLETED
steps
object[]
hasProject
boolean
hasApiKey
boolean
hasEvent
boolean