DeepWorkZone
Releases
Releases
  1. Public API
  • Webhooks
  • Public API
    • Authentication
    • User Stats
      GET
    • Get Session History
      GET
  1. Public API

Get Session History

Developing
Development
https://api-dev.deepworkzone.ai
Development
https://api-dev.deepworkzone.ai
GET
https://api-dev.deepworkzone.ai
/api/v1/public/history/{multiplai_id}
Last modified:2026-02-11 03:08:04
Maintainer:darryl.ceguerra

presence_data Field Explanation#

The presence_data array represents a time-sliced presence timeline for a session.
It is used to track whether the participant was present, absent, or inactive throughout the entire session duration with fine-grained resolution.

🧠 Core Concept#

The entire session duration is divided into 100 equal slices
Each item in the presence_data array represents 1% of the total session time
This makes the system work consistently whether the session is:
30 minutes
60 minutes
120 minutes (2 hours)
Because it is percentage-based, the logic is duration-agnostic.
Session Duration1 Array Item Represents
30 minutes18 seconds
60 minutes36 seconds
120 minutes72 seconds

📊 Possible Values per Item#

Each element in the array can contain:
ValueMeaning
nullUser is inactive (not yet joined, already left, or session time is not reaching that percentage)
0User is active but no presence detected
1 - 100User is active with presence confidence % detected by the system

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-dev.deepworkzone.ai/api/v1/public/history/70334?date_start=2025-02-04&date_end=2026-02-08&timezone=Asia%2FManila&page=1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "success",
    "message": "Success",
    "data": [
        {
            "id": 1279,
            "date": "Jan 22, 2026 - 08:30 AM",
            "type": "drop-in",
            "name": "test",
            "duration": "60 minutes",
            "ffs": 80,
            "presence": 93.27,
            "participant_id": 414,
            "time_end": "09:30 AM",
            "joined_at": "08:20 AM",
            "presence_data": [
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                null,
                null,
                100,
                98,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                100,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                null,
Modified at 2026-02-11 03:08:04
Previous
User Stats
Built with