Add Malop Comment

Endpoint URL: https://<your server/rest/crimes/comment/:malopID
Endpoint URI: crimes/comment/:malopID

Action: POST

Adds a comment to the specified Malop.

Note

Ensure that you have logged into the Cybereason platform. For details, see Log in with the API.

Request Headers

You must add an Content-Type:application/json header with the request.

Note

If you are using cURL, add the authorization cookie details or the path to the file with cookie details with every request.


Request Body

Input: JSON

<comment to add>

Note

You do not need to add quotes around this request.


Request Parameters

URL/URI parameters: Add the required malopID to the URL.

Request Body Parameters: You must provide a string with the comment.


Response Success Schema

A message indicating the successful addition of the comment.


Response Failure Schema

None


Example: Add a Malop comment

curl --request POST \
    --url https://12.34.56.78/rest/crimes/comment/11.-4417342166587998772 \
    --header 'Content-Type:text/plain' \
    --data '{
                Checked into Virus Total - no report
            }'