update_engagement
Modify engagement details in DefectDojo by updating parameters like branch tag, build ID, commit hash, deduplication status, description, and target dates.
Instructions
Update an existing engagement
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_tag | No | ||
build_id | No | ||
commit_hash | No | ||
deduplication_on_engagement | No | ||
description | No | ||
engagement_id | Yes | ||
engagement_type | No | ||
lead_id | No | ||
name | No | ||
status | No | ||
tags | No | ||
target_end | No | ||
target_start | No | ||
version | No |
Input Schema (JSON Schema)
{
"properties": {
"branch_tag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Branch Tag"
},
"build_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Build Id"
},
"commit_hash": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Commit Hash"
},
"deduplication_on_engagement": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Deduplication On Engagement"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"engagement_id": {
"title": "Engagement Id",
"type": "integer"
},
"engagement_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Engagement Type"
},
"lead_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Lead Id"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
},
"tags": {
"anyOf": [
{
"items": {},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
},
"target_end": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Target End"
},
"target_start": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Start"
},
"version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Version"
}
},
"required": [
"engagement_id"
],
"title": "update_engagementArguments",
"type": "object"
}