AiAgentTaskUpdateInput
No description
input AiAgentTaskUpdateInput {
id: ID!
name: String
externalId: String
description: String
taskStatus: AiAgentTaskStatus
taskMetaData: String
agentVersionIds: [ID!]
agentToolIds: [ID!]
updatedByOrigin: AiAgentOriginType
updatedAtProviderTime: DateTime
tags: [AiAgentTagInput!]
instructions: [String]
}
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.externalId ● String scalar miscellaneous
External ID of the AI agent task if available.
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.agentVersionIds ● [ID!] list scalar miscellaneous
List of AI Agent Version IDs to associate with this task.
AiAgentTaskUpdateInput.agentToolIds ● [ID!] list scalar miscellaneous
List of AI Agent Tool IDs to associate with this task.
AiAgentTaskUpdateInput.updatedByOrigin ● AiAgentOriginType enum agent-control-tower
AI Agent Origin Type when updating the task.
AiAgentTaskUpdateInput.updatedAtProviderTime ● DateTime scalar partner-portal
Updated At Provider Time
AiAgentTaskUpdateInput.tags ● [AiAgentTagInput!] list input agent-control-tower
Tags for categorization.
AiAgentTaskUpdateInput.instructions ● [String] list scalar miscellaneous
Instructions for the task.
Member Of
aiAgentTaskUpdate mutation