Waiting for engine...
Skip to main content

aiAgentGardenRuntimesWithAgents

Returns the list of Garden runtimes accessible to an account.

By default, only runtimes where at least one agent alias is deployed are returned. When testAliasRuntimeRequired is true, runtimes where an agent's TEST alias has been invoked (but no alias is deployed) are also included — forming the union of deployed and test-invoked runtimes.

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.
  • testAliasRuntimeRequired: Boolean - Optional. When true, includes runtimes where agents have been tested (TEST alias invoked) in addition to runtimes with deployed aliases. Defaults to false.

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"]
testAliasRuntimeRequired: false
}) {
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.

On this Page