Skip to content

Create an export for archived vulnerabilities

POST
/api/v4/security/projects/{id}/vulnerability_archive_exports

Creates an export for archived vulnerabilities in a specified project. If an authenticated user does not have permission to read vulnerabilities, returns a 403 Forbidden status code.

id
required
One of:
string

The ID or URL-encoded path of the project

Media type application/json
object
start_date
required

Start of the date range

string format: date
nullable
end_date
required

End of the date range

string format: date
nullable
export_format

The format of export to be generated

string
default: csv nullable
Allowed values: csv

Created

Media type application/json
object
id
integer format: int64
created_at
string format: date-time
project_id
integer format: int64
format
string
status
string
started_at
string format: date-time
finished_at
string format: date-time
_links
object
Example generated
{
"id": 1,
"created_at": "2026-04-15T12:00:00Z",
"project_id": 1,
"format": "example",
"status": "example",
"started_at": "2026-04-15T12:00:00Z",
"finished_at": "2026-04-15T12:00:00Z",
"_links": {}
}

Bad Request

Not Found