Acontext
SessionSession_idObserving_status

Get message observing status for a session

GET
/session/{session_id}/observing_status

Returns the count of observed, in_process, and pending messages

Authorization

BearerAuth
Authorization<token>

Project Bearer token (e.g., "Bearer sk-ac-xxxx")

In: header

Path Parameters

session_id*string

Session ID

Formatuuid

Response Body

application/json

curl -X GET "https://loading/api/v1/session/497f6eca-6276-4993-bfeb-53cbbbba6f08/observing_status"
{
  "code": 0,
  "error": "string",
  "msg": "string",
  "data": {
    "in_process": 0,
    "observed": 0,
    "pending": 0,
    "updated_at": "string"
  }
}