Skip to content
Pile
Esc
↑↓navigate↵open⌘Jpreview

List agent setup status

GET/workspaces/{organizationId}/agent/setup-status
Path parameters
organizationIdstringrequired
Responses
200

Per-provider onboarding readiness: credentials source, compute backend, and what's still missing before first dispatch

githubConnectedbooleanrequired
providersobject[]required
Show properties
Array of object
agentIdstringrequired
credentialsstringrequired
Allowed:workspacedeploymentnone
computeProviderstringrequired
computeCredentialsstringrequired
Allowed:workspacedeploymentnone
missingstring[]required
readybooleanrequired
Try it
Server
Parameters
Request
curl -X GET '/workspaces/string/agent/setup-status'
Response
{
  "githubConnected": true,
  "providers": [
    {
      "agentId": "string",
      "credentials": "workspace",
      "computeProvider": "string",
      "computeCredentials": "workspace",
      "missing": [
        "string"
      ],
      "ready": true
    }
  ]
}