curl --request GET \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/logs \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"actor": "<string>",
"prop_changed": "<string>",
"old_value": "<string>",
"new_value": "<string>",
"server_id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
Get sessions for given day
curl --request GET \
--url https://api.hyra.io/activity/sessions/{workspaceId}/{eventId}/logs \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"actor": "<string>",
"prop_changed": "<string>",
"old_value": "<string>",
"new_value": "<string>",
"server_id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object[]
.