Recover a Workspace Connection create
const url = 'https://api.agentaab.com/api/app/example/workflow/connections/recovery/example/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.agentaab.com/api/app/example/workflow/connections/recovery/example/ \ --header 'Authorization: Bearer <token>'Look up the committed result of an earlier idempotent create without creating or mutating a Connection.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”The exact Idempotency-Key from the original create.
Responses
Section titled “Responses”The previously created redacted Connection summary.
object
Redacted Workspace Connection state. It contains a server-managed reference and sanitized capabilities, never private credential material.
object
Opaque server-managed reference used by materialized v1 Tool bindings.
object
Bounded provider configuration with credential-shaped fields forbidden.
object
Sanitized bounded capability marker or MCP Tool manifest from the last successful test.
object
Example
{ "connection": { "scope": { "kind": "creator" }, "provider": "web_search", "credential_mode": "bearer", "status": "active", "last_error_code": "workspace_connection_test_required" }}The mutation identifier is invalid.
object
Stable public-safe Workspace Connection error identifier.
Example
{ "code": "workspace_connection_failed"}The creator session is missing, invalid, expired, or does not have a verified email.
object
Example
{ "code": "creator_session_required"}A public Agent Business runtime credential cannot access creator control-plane APIs.
object
Example
{ "code": "runtime_token_not_allowed"}No committed create is visible for this mutation identifier, or the Workflow is unavailable.
The Agent Business is not a Workflow, or the creator identity conflicts with an existing binding.
An unexpected Workspace Connection failure was sanitized before returning it.
object
Example
{ "code": "workspace_connection_failed"}The configured creator identity service failed while verifying the session.
object
Example
{ "code": "creator_session_verification_failed"}Creator auth, control-plane storage, or authoritative Connection storage is unavailable.