action clearblade_get_user_session { label: "SESSION - Get user session info" description: "## Description:\nReturns list of user sessions with User ID and Timestamps . \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 \n### Filter Options\n\n* user_id - string\n* issued - int (Unix timestamp)\n \n### Example:\n\n```json\n{\"FILTERS\":[[{\"NEQ\":[{\"user_id\":\"9cd8ece70bea9e5a6de9cee05\"}]},{\"EQ\":[{\"issued\":1587659839}]}]],\"PAGESIZE\":0,\"PAGENUM\":0}\n```\n" provider: clearblade method: GET path: "/admin/v/4/session/{systemKey}/user" 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 } }