Skip to content

Get Agent Dependencies

GET
/api/agents/{agent_name}/{version}/dependencies
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.

agent_name
required
Agent Name
string
version
required
Version
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
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": {}
}
]
}