aiAgentToolDisassociation
Disassociate entities from an AI Agent Tool in the AI Agent Registry.
Description: This mutation removes all the association of tool from respective DRAFT version of Task.
Input Parameters (AiAgentToolDisassociateInput):
id: ID! - Required. Unique identifier of the AI agent tool.aiAgentTaskIds: [ID]! - Required. Either empty or guid of DRAFT version of task from which tool need to be disassociates. if [] will disassociates form all the task.
Response:
- Returns a boolean value indicating the success status of the disassociation operation.
Example Request:
mutation DisassociateAiAgentTool {
aiAgentToolDisassociation(input: {
id: "tool-customer-analyzer-001",
aiAgentTaskIds: ["task-guid-1", "task-guid-2"]
})
}
Example Response:
{
"data": {
"aiAgentToolDisassociate": true
}
}
aiAgentToolDisassociation(
input: AiAgentToolDisassociationInput!
): Boolean
Arguments
aiAgentToolDisassociation.input ● AiAgentToolDisassociationInput! non-null input agent-control-tower
Type
Boolean scalar miscellaneous
The Boolean scalar type represents true or false.
Was this topic helpful?