aiAgentProviderAccount
Retrieve a single AI Agent Provider account available in the AI Agent Registry that is associated with the authenticated user's account.
Description: This query returns a single AI Agent Provider account linked to the authenticated user’s account.
Input Parameters:
id: ID! - The ID of the AI Agent Provider account to be retrieved.
Response:
- Returns a single
AiAgentProviderAccountobject representing the requested AI Agent Provider account.
Example Request:
query AiAgentProviderAccount($providerAccountId: ID!) {
aiAgentProviderAccount(id: $providerAccountId) {
id
providerType
providerSubType
providerAccountName
externalProviderAccountId
externalProviderAccountName
metadataJson
idpAccountId
providerAccountStatus
auditData {
createdByUserId
createdTime
modifiedByUserId
modifiedTime
}
agents {
id
externalId
agentVersions {
id
version
name
description
}
}
onboardingTemplate {
templateUrl
expiresIn
externalId
}
}
}
aiAgentProviderAccount(
id: ID!
): AiAgentProviderAccount
Arguments
aiAgentProviderAccount.id ● ID! non-null scalar miscellaneous
Type
AiAgentProviderAccount object agent-control-tower
Represents an AI Agent Provider Account in the AI Agent Registry.
Was this topic helpful?