v1

latestOpenAPI 3.1.02026-08-063776831.4 MB
MonitoringWorkflow

Create assignment for a single monitoring workflow

Assigns a monitoring workflow to a specific user

post/monitoring-workflows/{id}/assignment

Path parameters

idstring required

ID of the monitoring workflow to assign

Headers

tenant-idstring required

Tenant ID

Request body

assignTostring required

User ID being assigned to

Example request

{
  "assignTo": "user_123456"
}

Response

Assignment created successfully

workflowIdstring

ID of the credentialing workflow

errorstring

Error message if assignment failed

Example response

{
  "workflowId": "44c8fa75-15a1-4790-a0dd-139058d1f86d",
  "assignment": {
    "assignedTo": "user_789012",
    "assignedBy": "user_345678",
    "assignedAt": "2021-01-01T00:00:00Z"
  }
}