Assessment Actions
Create Assessment Task
Use this API to create new tasks on an assessment. Only a single task can be created on an assessment per API call.
🗒 Things to Know
Tasks cannot be created for the following assessment types:
Global Readiness Assessment
Readiness Assessment
Program Benchmarking
Dynamic Incident Notification Assessment
post/api/assessment/v2/assessments/{assessmentId}/tasks
Path parameters
assessmentIdstring uuid required
The unique ID of the assessment in which to create the task.
Request body
Example request
{
"taskName": "Complete security review",
"description": "Review security controls and document findings",
"assigneeId": "123e4567-e89b-12d3-a456-426614174000",
"deadline": "2025-12-31",
"collaborators": [
{
"collaboratorId": "123e4567-e89b-12d3-a456-426614174000",
"collaboratorEmail": "collaborator@example.com",
"type": "USER"
}
]
}Response
Created
string uuid required