controls

put/controls/{id}

Path parameters

idinteger required

id of the control

Request body

projectIdinteger
statusstring
approverstring
riskReviewstring
ownerstring
reviewerstring
dueDatestring date-time
implementationDetailsstring
controlGroupinteger

Example request

{
  "projectId": 1,
  "status": "In Progress",
  "approver": "John Doe",
  "riskReview": "Acceptable risk",
  "owner": "Bob Johnson",
  "reviewer": "Alice Williams",
  "dueDate": "2024-09-20T00:00:00.000Z",
  "implementationDetails": "Implement new feature",
  "controlGroup": 1
}

Response

control

messagestring

Example response

{
  "message": "accepted",
  "data": {
    "id": 1,
    "title": "Regulatory Training and Response Procedures",
    "description": "Train personnel on regulatory requirements and procedures for responding to authority requests.",
    "orderNo": 1,
    "status": "In Progress",
    "approver": "John Doe",
    "riskReview": "Acceptable risk",
    "owner": "Bob Johnson",
    "reviewer": "Alice Williams",
    "dueDate": "2024-09-20T00:00:00.000Z",
    "implementationDetails": "Implement new feature"
  }
}

Changes