Update Delegation
PUT /rest/delegation/1.0/api/<delegationId>
Updates an existing delegation record using the data provided in the request body.
Request
<jira_url>/rest/delegation/1.0/api/delegation/<delegationId>
The request takes all parameters from the request body.
The request expects a body (payload) in the json format shown below
{
"active": true,
"delegator": "user1",
"delegates": [
"user2"
],
"categoryIds": [
2
],
"startDate": "2024-12-18T21:00+03:00",
"endDate": "2024-12-25T21:00+03:00",
"notes": "Delegation set for holiday coverage"
}