action clearblade_get_device_session_count { label: "SESSION - Get device session count" description: "## Description:\nReturns number of device sessions. \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* device_key - string\n* issued - int\n \n### Example:\n\n```json\n{\"FILTERS\":[[{\"NEQ\":[{\"device_key\":\"e2c794e60bee9ced68fc101 :: DEVICENAME0001\"}]},{\"EQ\":[{\"issued\":1587659839}]}]],\"PAGESIZE\":0,\"PAGENUM\":0}\n```\n" provider: clearblade method: GET path: "/admin/v/4/session/{systemKey}/device/count" 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 } }