I am trying to update the original estimate and remaining estimate in an epic on our jira cloud instance. I am using postman with basic auth (the login has administrator privileges) and raw json for hte body. The base URL is http://example.atlassian.net/rest/api/latest/issue/PM-47 and the body parameter is the following json:
{
"timetracking":{
"originalEstimate":"2h",
"remainingEstimate":"1h"
}
}
I do not get an error, but it also does not update the fields. I have also tried updating something simple like the summary, but I have the same outcome. I can successfully get data, but this is the first time I have tried to write data.