Waiting for engine...
Skip to main content

aiAgentDelete

Delete an existing AI Agent the AI Agent Registry.

Description: This mutation removes an AI Agent by its unique identifier from the specified provider account. When the agent is deleted, it automatically cascades the deletion to remove all associated versions and their corresponding version associations.

Input Parameters:

  • id: ID! - The unique identifier of the AI Agent to be deleted.

Response:

  • Returns the status of delete process [true/false].

Example Request:

mutation DeleteAiAgent {
aiAgentDelete(id: "ai-agent-unique-identifier")
}

aiAgentDelete(
id: ID!
): Boolean!

Arguments

aiAgentDelete.id ● ID! non-null scalar miscellaneous

Type

Boolean scalar miscellaneous

The Boolean scalar type represents true or false.

On this Page