Describe debugger scenarios supported by a resource
GET
/v1/debug-sessions/capabilitiesHow to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
None.
Query parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| targetKind | query | function | web_app | connector | skill | Yes | — |
| resourceId | query | string | Yes | — |
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Resource-specific debugger capabilities and active execution bindingapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| schemaVersion | computer_agents_diagnostic_v1 | Yes | — |
| target | object | Yes | — |
| target.kind | function | web_app | connector | skill | Yes | — |
| target.resourceId | string | Yes | — |
| target.resourceName | string | Yes | — |
| binding | object | Yes | — |
| binding.mode | deployed_revision | Yes | — |
| binding.revision | string | Yes | — |
| ready | boolean | Yes | — |
| readiness | object | No | — |
| readiness.runtimeSupported | boolean | No | — |
| readiness.credentialsConnected | boolean | No | — |
| readiness.active | boolean | No | — |
| readiness.packageValid | boolean | No | — |
| readiness.reason | string | No | — |
| connector | object | No | — |
| connector.connectorId | string | Yes | — |
| connector.provider | string | Yes | — |
| connector.runtimeSupported | boolean | Yes | — |
| connector.unsupportedReason | string | No | — |
| connector.probeAction | string | No | — |
| connector.credentials | object[] | Yes | — |
| connector.credentials[].id | string | Yes | Unique identifier. |
| connector.credentials[].name | string | Yes | Human-readable name. |
| connector.credentials[].identity | string | No | — |
| connector.credentials[].status | valid | invalid | Yes | Current lifecycle status. |
| connector.credentials[].isDefault | boolean | Yes | — |
| connector.credentials[].updatedAt | string | No | ISO 8601 timestamp. |
| connector.capabilities | object[] | Yes | — |
| connector.capabilities[].id | string | Yes | Unique identifier. |
| connector.capabilities[].access | read-only | interactive | Yes | — |
| connector.capabilities[].description | string | No | Human-readable description. |
| connector.capabilities[].inputSchema | object | No | — |
| skill | object | No | — |
| skill.skillId | string | Yes | — |
| skill.source | published_version | saved_version | editor_candidate | system_bundle | Yes | — |
| skill.versionId | string | Yes | — |
| skill.contentDigest | string | Yes | — |
| skill.runtimeContractVersion | custom-skill-v2 | Yes | — |
| skill.active | boolean | Yes | — |
| skill.packageValid | boolean | Yes | — |
| skill.requiredContextSupported | boolean | No | This backend supports loading required custom Skill instructions into every live thread execution. Clients must require true before starting a mandatory custom Skill test. |
| skill.manifest | object | Yes | — |
| skill.manifest.entrypoint | SKILL.md | Yes | — |
| skill.manifest.fileCount | integer | Yes | — |
| skill.manifest.totalBytes | integer | Yes | — |
| skill.manifest.runnableFiles | string[] | Yes | — |
| skill.manifest.requiredRuntimes | python | node | shell[] | Yes | — |
| skill.issues | object[] | Yes | — |
| skill.issues[].code | string | Yes | — |
| skill.issues[].severity | error | warning | Yes | — |
| skill.issues[].message | string | Yes | Message text. |
| skill.issues[].path | string | No | Workspace-relative file path. |
| skill.versions | object[] | Yes | — |
| skill.versions[].id | string | Yes | Unique identifier. |
| skill.versions[].label | string | Yes | — |
| skill.versions[].source | published_version | saved_version | editor_candidate | system_bundle | Yes | — |
| skill.versions[].contentDigest | string | Yes | — |
| scenarios | object[] | Yes | — |
| scenarios[].id | function.http_request | web_app.route_request | connector.connection_health | connector.runtime_access | connector.tool_call | skill.package_validation | skill.runtime_readiness | Yes | Unique identifier. |
| scenarios[].title | string | Yes | Display title. |
| scenarios[].description | string | No | Human-readable description. |
| scenarios[].inputSchema | object | No | — |
| scenarios[].steps | object[] | No | — |
| scenarios[].steps[].id | string | Yes | Unique identifier. |
| scenarios[].steps[].title | string | Yes | Display title. |
| scenarios[].steps[].description | string | Yes | Human-readable description. |
| scenarios[].steps[].status | pending | running | passed | failed | skipped | Yes | Current lifecycle status. |
| scenarios[].steps[].durationMs | integer | No | — |
| scenarios[].steps[].summary | string | No | — |
| scenarios[].steps[].evidence | object | No | — |
| scenarios[].steps[].error | object | No | — |
| scenarios[].steps[].error.code | string | No | — |
| scenarios[].steps[].error.message | string | No | Message text. |
400Invalid diagnostic target
None.
403Active organization or debugger permission required
None.
404Target resource not found
None.
502Connector runtime could not be reached
None.
503Connector diagnostics are not configured for this deployment
None.
Describe debugger scenarios supported by a resource
Loading...
Response 200
Loading...