Skip to main content
POST
/
api
/
playground
/
sessions
/
from-scan
Create Session From Scan
curl --request POST \
  --url https://api.example.com/api/playground/sessions/from-scan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scan_id": "<string>",
  "only_flagged": true,
  "limit": 5000,
  "name": "<string>",
  "include_columns": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string | null

Cookies

antidote_session
string | null

Body

application/json
scan_id
string
required
only_flagged
boolean
default:true
limit
integer
default:5000
Required range: 10 <= x <= 50000
name
string | null
include_columns
string[] | null

Response

Successful Response

The response is of type Response Create Session From Scan Api Playground Sessions From Scan Post · object.