Update details of an existing job assignment.
PUT
/jobAssignment/{jobID}
curl \
-X PUT http://api.example.com/jobAssignment/{jobID}?companyID=42 \
-H "Content-Type: application/json" \
-d '{"assignedDate":"2024-05-04","userIDs":[42]}'
Request example
{
"assignedDate": "2024-05-04",
"userIDs": [
42
]
}