action clearblade_get_audit_dev { label: "AUDIT - Get Audit Info" description: "## Description:\nReturns list of assets and the information about the changes that have been made. This endpoint is for Admin and Dev.\n\n### Query Structure:\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## Audit Table Schema:\nRefer to this when building the query.\n\n | Column | Type | Possible Values|Example|\n |:---------|:---------|:------|:---------|\n | id | bigint |ANY_POSITIVE_INTEGER|10440595|\n |system_key|string|SINGLE_STRING_WITH_HEX_CHARS_ONLY|\"ccafb4cadaccaf9ebba01\"|\n |time|timestamp|ISO_DATE_TIME_STRING|\"2020-01-29T20:18:18.475214Z\"|\n |response_time|bigint|ANY_POSITIVE_INTEGER|4038669|\n |asset_class|string|adapters, adapterFiles, devices, users, multi_dev, services, libraries, servicecaches, timers, triggers, webhooks, portals, plugins, rolesperms, collections, edges, messaging, deployments, edgegroups, system, usersessions, devicesessions|\"collections\"|\n |action_type|string|Create, Update, Delete, Create Columns, Delete Columns, Developer Password Reset, User Password Reset, MQTT Disconnect, MQTT Connect|\"MQTT Connect\"|\n |email|string|SINGLE_VALID_EMAIL_STRING|\"example@clearblade.com\"|\n |asset_id|string|ANY_STRING|\"ClearBlade-iPhone\"|\n |changes|string|STRINGIFIED_JSON|\"{\\\\\"newVersion\\\\\":2}\"|\n |user_type|string|UNKNOWN, DEV, USER, DEVICE, Invalid UserType|\"DEVICE\"|\n \n### Example:\n\n```json\n{\"FILTERS\":[[{\"NEQ\":[{\"asset_class\":\"services\"}]},{\"EQ\":[{\"action_type\":\"create\"}]}]],\"PAGESIZE\":0,\"PAGENUM\":0}\n```\n" provider: clearblade method: GET path: "/admin/audit/{systemKey}" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } query: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }