create_engagement
Initiate a new engagement in DefectDojo by defining product details, target timelines, and status to manage vulnerability assessments effectively.
Instructions
Create a new engagement
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_tag | No | ||
build_id | No | ||
commit_hash | No | ||
deduplication_on_engagement | No | ||
description | No | ||
engagement_type | No | ||
lead_id | No | ||
name | Yes | ||
product_id | Yes | ||
status | Yes | ||
tags | No | ||
target_end | Yes | ||
target_start | Yes | ||
version | No |
Input Schema (JSON Schema)
{
"properties": {
"branch_tag": {
"default": null,
"title": "Branch Tag",
"type": "string"
},
"build_id": {
"default": null,
"title": "Build Id",
"type": "string"
},
"commit_hash": {
"default": null,
"title": "Commit Hash",
"type": "string"
},
"deduplication_on_engagement": {
"default": null,
"title": "Deduplication On Engagement",
"type": "boolean"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"engagement_type": {
"default": null,
"title": "Engagement Type",
"type": "string"
},
"lead_id": {
"default": null,
"title": "Lead Id",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"product_id": {
"title": "Product Id",
"type": "integer"
},
"status": {
"title": "Status",
"type": "string"
},
"tags": {
"default": null,
"items": {},
"title": "Tags",
"type": "array"
},
"target_end": {
"title": "Target End",
"type": "string"
},
"target_start": {
"title": "Target Start",
"type": "string"
},
"version": {
"default": null,
"title": "Version",
"type": "string"
}
},
"required": [
"product_id",
"name",
"target_start",
"target_end",
"status"
],
"title": "create_engagementArguments",
"type": "object"
}