aiAgentTask
Retrieve a specific AI Agent Task by its ID for a given provider account.
Description: This query returns the details of a specific AI Agent Task if it belongs to the specified provided provider account and the provider is accessible for the logged-in IDP account.
Input Parameters (ID):
id: ID! - Required. The unique identifier of the AI Agent Task to retrieve.
Response:
- Returns an
Taskobject containing the task details.
Example Request:
query {
aiAgentTask(
id: "task-67890"
) {
id
externalId
name
description
version
taskStatus
metaData
agentVersions {
id
name
version
}
tags {
id
key
value
}
tools {
id
name
description
toolType
status
}
syncData {
lastSyncStatus
lastSyncStartDate
lastSyncEndDate
}
auditData {
createdByUserId
createdTime
modifiedByUserId
modifiedTime
updatedByOrigin
updatedAtProviderTime
}
}
}
aiAgentTask(
id: ID!
): AiAgentTask
Arguments
aiAgentTask.id ● ID! non-null scalar miscellaneous
Type
AiAgentTask object agent-control-tower
Was this topic helpful?