aiAgentGardenRuntimesWithAgents
Returns the list of Garden runtimes accessible to an account where at least one agent is deployed. Excludes runtimes with no deployed agents.
Input Parameters (AiAgentGardenRuntimesWithAgentsInput):
accountId:String- Optional. Boomi Platform account ID. When provided, scopes runtimes to this account. If omitted, derived from caller's JWT.providerAccountIds:Array of UUID strings- Optional. Filters by specific provider accounts. Takes precedence over accountId.
Example Request (Integration team - pass account ID):
query {
aiAgentGardenRuntimesWithAgents(input: {
accountId: "boomi-account-id"
}) {
id
externalId
name
region
type
status
}
}
Example Request (ACT UI - use provider account filter):
query {
aiAgentGardenRuntimesWithAgents(input: {
providerAccountIds: ["provider-account-guid-1"]
}) {
id
externalId
name
region
type
status
}
}
aiAgentGardenRuntimesWithAgents(
input: AiAgentGardenRuntimesWithAgentsInput!
): [AiAgentGardenRuntime!]
Arguments
aiAgentGardenRuntimesWithAgents.input ● AiAgentGardenRuntimesWithAgentsInput! non-null input agent-control-tower
Type
AiAgentGardenRuntime object agent-control-tower
Represents a Garden runtime environment where agents can be deployed.
Was this topic helpful?