Are there any details on what is expected here? I ...
# ask-community
b
Are there any details on what is expected here? I added this to see what would happen and now I cannot delete it in cloud.
k
Hey @Braun Reyes! We’re working on improving this but you can delete them through the graphQL API like this:
Copy code
mutation {
  delete_agent_config(input: {agent_config_id: "<id-here>"}) {
    success
  }
}
To get the agent config id
Copy code
query {
  agent_config {
    id
    name
  }
}
☝️ PR adding some documentation about this