When using the Swagger UI to get a list of the;
Feeds - Feed Manager Rest Adapter - GET to fetch a list of all Feeds
RTAs - Real Time Analytic Rest Adapter - GET to fetch all Real Time Analytic tasks.
I get valid JSON response files. But it's only for the items owned by the ID I logged in with, and I need a list of all the items in the Organization that my ID can see or access. Does anyone know how to tell the query to get all the organization's items ? Is there another parameter that is not documented?
curl -X 'GET' \ 'https://us4-iot.arcgis.com/advanced/{oAth}/iot/feed' \ -H 'accept: application/json' \ -H 'Authorization: token={token here}' \ -H 'Referer: https://us4-iot.arcgis.com/advanced/iqmxifcc2nngkvph/iot/api/swagger.html'
Process the resulting JSON file through jq and outputting a CSV lets me bring the list into my markup document.
TIA --