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>'
{
  "status": "PENDING",
  "steps": [
    {
      "name": "<string>",
      "status": "completed",
      "description": "<string>"
    }
  ],
  "hasProject": true,
  "hasApiKey": true,
  "hasEvent": true
}

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