I am writing a program using the 24.3 Automic REST API that needs to get a list of all agents in the system from client 0 (I have that working), and then for each agent, it needs to get the list of authorizations for each client in the system (read, write, execute). I've not been able to find the correct url for that. I've tried the following:
/ae/api/v1/0/system/agents/authentication_package
Which returns:
Authorizations for client 0: {
"data": null
}
I also tried specifying a client (/ae/api/v1/1042/system/agents/authentication_package) and got:
Authorizations for client 1042: {
"data": null
}
I've also tried:
/ae/api/v1/0/system/agents/{agentName}/authentication_package and
/ae/api/v1/1042/system/agents/authentication_package
With the same results.
Any suggestions from anyone would be greatly appreciated.
Steve