Obtaining downloaded files

Kaspersky Research Sandbox provides an API to obtain a tar.gz archive that contains files downloaded by the executed object.

Before running this request, make sure the required task is not deleted.
In the cURL command, use the verbose mode (-v).
In case of a request error, the tar.gz archive will be empty, but will be a plain text file containing an error message.

Request

Request method: GET

Endpoint: https://<server name>/api/v1/sandbox/tasks/{task ID}/downloads/archive

Parameters

Obtaining downloaded files

Parameter

Data type

Occurrence

Description

task_id

string

Required

Object execution task ID (GUID).

cURL command sample:

$ curl -v --user <user name> --request GET 'https://<server name>/api/v1/sandbox/tasks/<task ID>/downloads/archive' --output <tar.gz archive name>

You will be asked to enter your password. The password is not displayed while you type it.

Responses

Endpoint returns a tar.gz archive that contains downloaded files.

200 OK

Archive with downloaded files is obtained successfully.

400 Bad Request

Failed to obtain archive with downloaded files due to incorrect query.

400 Bad Request response parameters

Parameter

Data type

Description

code

string

Error ID.

message

string

Error description.

meta

string

Additional information, if available.

Error examples:

Incorrect task_id parameter:

{"code":6,"message":"task not found"}

Incorrect task_id parameter format:

{"code":29,"message":"bad task id"}

401 Unauthorized

Failed to obtain archive with downloaded files due to incorrect user credentials.

404 Not Found

Task with specified ID not found.

500 Internal Server Error

Failed to obtain archive with downloaded files due to an internal server error.

Page top