Retrieve a staff member’s logbook history.
curl --request GET \
--url https://api.hyra.io/staff/logbook/{workspaceId}/{staffId} \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"author": "<string>",
"workspace": "<string>",
"staff_id": "<string>",
"type": "<string>",
"message": "<string>",
"files": [
"<string>"
],
"videos": [
"<string>"
],
"expired": true,
"expiration": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"from_trello": true,
"unfurls": [
{
"url": "<string>",
"title": "<string>",
"description": "<string>",
"image": "<string>",
"stream": "<string>"
}
]
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object[]
.
curl --request GET \
--url https://api.hyra.io/staff/logbook/{workspaceId}/{staffId} \
--header 'Authorization: Bearer <token>'
[
{
"_id": "<string>",
"author": "<string>",
"workspace": "<string>",
"staff_id": "<string>",
"type": "<string>",
"message": "<string>",
"files": [
"<string>"
],
"videos": [
"<string>"
],
"expired": true,
"expiration": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"from_trello": true,
"unfurls": [
{
"url": "<string>",
"title": "<string>",
"description": "<string>",
"image": "<string>",
"stream": "<string>"
}
]
}
]