Can I get alerted when any agent becomes offline? ...
# ask-community
d
Can I get alerted when any agent becomes offline? I saw cloud querying to agents on UI
k
You can if you look for agent automations on standard tier and up. Am on phone so can’t link at the moment. You can send an alert
👍 1
@Kevin Kho Hi. Where can I get the list of agent configs on Cloud? I want to delete some of them.
k
Hey, sorry was away from the computer during holidays. You had another issue with the id name templating right? Did you resolve it?
To get the id’s you need to need to use the GraphQL API
Copy code
query {
  agent_config {
    id
    name
  }
}
and then
Copy code
mutation {
	delete_agent_config(input: {agent_config_id: "36283b64-c32e-440a-9ddc-6f9e91ecce18"}) {
    success
  }
}