Get Agent Dependencies
GET
/api/agents/{agent_name}/{version}/dependencies
const url = 'https://example.com/api/agents/example/example/dependencies';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://example.com/api/agents/example/example/dependencies \ --header 'Authorization: Bearer <token>'List bundled apps, spck bindings, and dependent automations for this (agent_name, version) in the current env. Powers the web delete-confirmation modal so the user sees the full cascade before confirming.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”agent_name
required
Agent Name
string
version
required
Version
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
exampleValidation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}