Tasks
Create compliance task
Create a compliance task for evidence collection, remediation, review, or recurring control work inside an organization.
post/v1/tasks
Request body
Example request
{
"title": "Implement access controls",
"description": "Set up role-based access controls for the platform",
"assigneeId": "mem_abc123",
"frequency": "monthly",
"department": "it",
"controlIds": [
"ctrl_abc123"
],
"taskTemplateId": "tmpl_abc123",
"vendorId": "vnd_abc123"
}Response
Task created successfully
Example response
{
"id": "tsk_abc123def456",
"title": "Implement user authentication",
"description": "Add OAuth 2.0 authentication to the platform",
"status": "in_progress",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z",
"integrationScheduleFrequency": "daily"
}Changes
Changed in 2 of the 51 revisions of this API.3
- ○
added the optional property
integrationLastRunAtto the response with the201statusresponse-optional-property-added
- ○
added the required property
integrationScheduleFrequencyto the response with the201statusresponse-required-property-added
- ○
- ○
endpoint added
endpoint-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○