AiAgentTaskUpdateInput
No description
input AiAgentTaskUpdateInput {
id: ID!
name: String
description: String
taskStatus: AiAgentTaskStatus
taskMetaData: String
agentToolIds: [ID!]
tags: [AiAgentTagInput!]
instructions: [String]
agentIds: [ID!]
}
Fields
AiAgentTaskUpdateInput.id ● ID! non-null scalar miscellaneous
ID of the AI Agent Task to be updated.
AiAgentTaskUpdateInput.name ● String scalar miscellaneous
Name of the AI agent task.
AiAgentTaskUpdateInput.description ● String scalar miscellaneous
Description of the AI agent task.
AiAgentTaskUpdateInput.taskStatus ● AiAgentTaskStatus enum agent-control-tower
Status of the task.
AiAgentTaskUpdateInput.taskMetaData ● String scalar miscellaneous
Additional task information in JSON format.
AiAgentTaskUpdateInput.agentToolIds ● [ID!] list scalar miscellaneous
List of AI Agent Tool IDs to associate with this task.
AiAgentTaskUpdateInput.tags ● [AiAgentTagInput!] list input agent-control-tower
Tags for categorization.
AiAgentTaskUpdateInput.instructions ● [String] list scalar miscellaneous
Instructions for the task.
AiAgentTaskUpdateInput.agentIds ● [ID!] list scalar miscellaneous
List of AI Agent IDs to associate with this task. This will associate to DRAFT version of those agents
Member Of
aiAgentTaskUpdate mutation