How do I remove AgentConfigs created in the Automa...
# ask-community
n
How do I remove AgentConfigs created in the Automation section in Cloud? I have a hard time figuring out which of my configs correspond to which config ID, because there are extra configs created called “Unnamed config” which gets selected after saving.
After I’ve saved this
Clicking into that automation again makes it look like this
And btw, there’s a typo in the instruction for the automation. Double dash in the flag
k
Hey @Noah Holm, unfortunately we don’t have a way to delete agent configs in the UI yet, you’ll need to use a graphQL query like this.
Copy code
mutation {
  delete_agent_config(input: {agent_config_id: "<id-here>"}) {
    success
  }
}
And you can get your configs like:
Copy code
query {
  agent_config {
    id
    name
  }
}
Will bring up the typo to the team
👍 1
n
That’s all I need Kevin, and with the queries delivered to the keyboard what more can I ask of 🙂 Thanks!
I still think the creation of this automation is somewhat buggy though. As the picture show it creates these unnamed configs and chooses those instead of the one I actually selected
k
Ok will certainly bring that up to the team
🙏 1