list_engagements
Retrieve and filter engagements in DefectDojo with pagination options to manage vulnerability assessment workflows efficiently.
Instructions
List engagements with optional filtering and pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
name | No | ||
offset | No | ||
product_id | No | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"product_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Product Id"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"title": "list_engagementsArguments",
"type": "object"
}