v1

latestOpenAPI 3.0.02026-08-0442100147.0 KB
Workspace API - Apps

List activation summaries for all providers on an app

Returns a lightweight per-provider activation state summary for every provider that has been enabled on the app. Useful for rendering a multi-provider dashboard without N round-trips. For detailed per-step info, call GET /apps/:id/providers/:providerId/activation/steps.

get/v1/apps/{id}/providers

Path parameters

idstring required

Response

totalnumber required

Total number of providers in this response

Example response

{
  "providers": [
    {
      "providerId": "mitid",
      "enabled": true,
      "state": "completed",
      "currentStep": "activated",
      "currentStepIndex": 3,
      "stepCount": 4
    }
  ],
  "total": 3
}