I am trying to get some information using the API. The URI is
/wsg/api/public/v9_1/query/ap
If I POST
{ "filters": [ { "type": "DOMAIN", "value": "blah" } ], "attributes": [ "*" ] }
then it returns all information, but if I do
{ "filters": [ {...
Alternatively, does anyone have examples of scripted use of the API, or links to any good resources? The only ones I can find mention the filters, and say that "attributes" is an array of strings, but I can't find any examples of working code
Than...