Add log#
Add a Log to an existing task (requires manageTask
permission).
Query#
POST /api/case/task/{id}/log
With:
id
: Task identifier
Request Body Example#
{
"message": "The sandbox hasn't detected any suspicious activity",
"startDate": 1630683608000,
}
The only required field is message
.
If you want to attach a file to the log, you need to use a multipart request
curl -XPOST http://THEHIVE/api/v0/case/task/{taskId}/log -F attachment=@report.pdf -F _json='
{
"message": "The sandbox report"
}
'
Response#
Status codes#
201
: if Log is created successfully401
: Authentication error403
: Authorization error
Response Body Example#
{
"id": "~4264",
"_id": "~4264",
"createdBy": "jerome@strangebee.com",
"createdAt": 1630684502715,
"_type": "case_taskçlog",
"message": "The sandbox hasn't detected any suspicious activity",
"startDate": 1630683608000
}
{
"type": "AuthenticationError",
"message": "Authentication failure"
}
{
"type": "AuthorizationError",
"message": "Your are not authorized to create Log, you haven't the permission manageTask"
}
Last update:
October 13, 2023 07:01:35