Uploading symbol files

Kaspersky Research Sandbox provides an API to upload symbol files, which are required for correct custom image deployment. You can obtain a custom image manifest that contains a list of required symbol files using the /sandbox/manifest method.

Request

Request method: POST

Endpoint: https://<server name>/api/v1/sandbox/upload_symbols

Parameters

Uploading symbol files parameter

Parameter

Data type

Occurrence

Description

<path to zip archive>

string

Required

Full path to a .zip archive that contains symbol files.

cURL command sample:

$ curl --http1.1 -u <user name> --request POST https://<server name>/api/v1/sandbox/upload_symbols -H 'Content-Type: application/zip' --data-binary "@<path to zip archive>"

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

Responses

Endpoint uploads symbol files.

200 OK

Symbol files were successfully uploaded to Kaspersky Research Sandbox.

400 Bad Request

Failed to upload symbol files because the specified .zip archive is corrupted.

401 Unauthorized

Failed to upload symbol files due to incorrect user credentials.

500 Internal Server Error

Failed to upload symbol files due to an internal server error.

Page top