Create an instance-level vulnerability export
POST
/api/v4/security/vulnerability_exports
Creates a vulnerability export for the projects of the user selected in the Security Dashboard. The created vulnerability export is automatically deleted at the time specified in the expires_at field.
Authorizations
Section titled “ Authorizations ”Request Body
Section titled “ Request Body ” Media type application/json
object
export_format
Format of the generated report
string
send_email
If true, sends an email notification to the requesting user when the export completes.
boolean
Responses
Section titled “ Responses ”Created
Media type application/json
object
id
integer format: int64
created_at
string format: date-time
project_id
integer format: int64
group_id
integer format: int64
format
string
status
string
started_at
string format: date-time
finished_at
string format: date-time
send_email
boolean
expires_at
string format: date-time
_links
object
Example generated
{ "id": 1, "created_at": "2026-04-15T12:00:00Z", "project_id": 1, "group_id": 1, "format": "example", "status": "example", "started_at": "2026-04-15T12:00:00Z", "finished_at": "2026-04-15T12:00:00Z", "send_email": true, "expires_at": "2026-04-15T12:00:00Z", "_links": {}}Bad Request