Operations Log API
Overview
Section titled “Overview”wss op_log_list
The op_log_list request will return packages assigned to the current user for the specified time period.
Request Parameters
Section titled “Request Parameters”| Name | Type | Description |
|---|---|---|
created_at.gt | timestamp | Time reference point |
created_at.lt | timestamp | Time reference point |
gtorltparam is required.
Response Fields
Section titled “Response Fields”| Name | Type | Description |
|---|---|---|
logs | array[object] | Array of packages |
Example
Section titled “Example”{ "request": { "op_log_list": { "created_at": { "gt": "timestamp_in_ms" } }, "id": "RequestId" }}{ "response": { "logs": [ { "_id": "63480e68f4794709f802a2fd", "user_id": "634ec51c0b65918393dca5bf", "packet": { ... } }, { "_id": "63480e68f4794709f802a2fa", "user_id": "634ec51c0b65918393dca5bf", "packet": { ... } } ], "id": "RequestId" }}