added

Tenable MSSP: Create Evaluation Account v2

A new endpoint has been added to the Tenable Managed Security Service Provider (MSSP) API to enable users to define the licensed Tenable applications available when creating an evaluation account. Tenable is enabling this endpoint for customers in a rolling fashion. For more information, contact your Tenable representative.

🛑

Caution

Tenable has deprecated the Create evaluation account v1 endpoint. Tenable recommends that customers use the new Create evaluation account v2 endpoint instead. Please update any existing integrations that your organization has.

The new endpoint is described in the following table:

EndpointNameDescription
POST /mssp/accounts/v2/evalCreate evaluation account v2Creates an evaluation account.

Example

For example, to create an evaluation account for a customer named Example, Inc. with licenses for Tenable Vulnerability Management, Tenable Web App Scanning, and Tenable Identity Exposure, you could use the following cURL request:

curl --request POST \
     --url https://cloud.tenable.com/mssp/accounts/v2/eval \
     --header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "customer_name": "Example, Inc.",
  "licensed_apps": [
    "vm",
    "was",
    "ad"
  ],
  "default_contact_email": "[email protected]",
  "default_admin_username": "[email protected]",
  "country": "US"
}
'