action clearblade_get_system_updates { label: "AUDIT - Get list of systems that have been updated" description: "## Description:\nGet list of systems that have been updated. This is an Admin only endpoint.\n\n### Query:\n```json\n{\"PAGESIZE\":int,\"PAGENUM\":int,\"FILTERS\":[[{\"_REPLACE_WITH_OPERATOR_\":[{\"valueType\":\"value\"}]}]],\"SORT\":[{\"DESC\":\"value\"}]}\n```\n Note - You can generate a complex query object in a code service using the `ClearBlade.Query()` object. \n## Admin Audit Table Schema:\nRefer to this when building the query.\n\n | Column | Type | Possible Values| Examples|\n |:--------|:--------|:------|:------|\n | name | string |ANY_STRING|\"ClearBladeDev\"|\n |owner|string|EMAIL_STRING |\"example@clearblade.com\"|\n |systemKey|string|SINGLE_STRING_WITH_HEX_CHARS_ONLY|\"80sdff82c0b1fbda1f271\"|\n |disabled|boolean|true, false|true|\n |lastUpdated|timestamp|ISO_DATE_TIME_STRING|\"2020-01-29T20:18:18.475214Z\"|\n |numDevs|int|ANY_POSITIVE_INTEGER|2|\n |numServices|int|ANY_POSITIVE_INTEGER|2|\n |numLibraries|int|ANY_POSITIVE_INTEGER|2|\n |numDeployments|int|ANY_POSITIVE_INTEGER|2|\n |numRoles|int|ANY_POSITIVE_INTEGER|2|\n |numUsers|int|ANY_POSITIVE_INTEGER|2|\n |numDevices|int|ANY_POSITIVE_INTEGER|2|\n |numEdge|int|ANY_POSITIVE_INTEGER|2|\n |numAPIReqsTotal|int|ANY_POSITIVE_INTEGER|2|\n |numAPIReqsMonth|int|ANY_POSITIVE_INTEGER|2|\n |numAPIReqsYear|int|ANY_POSITIVE_INTEGER|2|\n |numPub|int|ANY_POSITIVE_INTEGER|2|\n |numPubMonth|int|ANY_POSITIVE_INTEGER|2|\n |numPubYear|int|ANY_POSITIVE_INTEGER|2|\n |numRecTotal|int|ANY_POSITIVE_INTEGER|2|\n |numRecMonth|int|ANY_POSITIVE_INTEGER|2|\n |numRecYear|int|ANY_POSITIVE_INTEGER|2|\n |diskUsage|int|ANY_POSITIVE_INTEGER|2|\n\n### Example:\n\n```json\n \"query\":{\"FILTERS\":[[{\"NEQ\":[{\"disabled\":true}]},{\"EQ\":[{\"numDevs\":2}]}]],\"PAGESIZE\":0,\"PAGENUM\":0}\n```\n" provider: clearblade method: GET path: "/admin/platform/systems" encoding: json input: { type: "object" properties: { "Clearblade-DevToken": { type: "string" } query: { type: "string" } } required: ["Clearblade-DevToken"] additionalProperties: false } output: { type: "object" additionalProperties: true } }