Rensei docs
API ReferenceOrganizations

Read an org's onboarding setup progress.

Returns the org onboarding progress flags (anthropic / codex / gemini / linear / github) and completedAt. Requires the caller to be an admin of the same org named in the path; a bearer org must match the path orgId (cross-tenant reads are 403).

GET
/api/org/{orgId}/setup-progress

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Path Parameters

orgId*string

The org id.

Response Body

application/json

curl -X GET "https://example.com/api/org/string/setup-progress"
{
  "anthropic": true,
  "codex": true,
  "gemini": true,
  "linear": true,
  "github": true,
  "completedAt": "string"
}
Empty
Empty
Empty
Empty