I am trying to set Original Estimate field, on create issue using REST API.
I am using json section like this:
"timetracking": {
"originalestimate ": "1d 2h",
"remainingEstimate": "3h 25m"
}
how say documentation :
but response of api rest is :
{
"errorMessages": [],
"errors": {
"timetracking": "Field 'timetracking' cannot be set. It is not on the appropriate screen, or unknown."
}
}
Any solution ?
Community moderators have prevented the ability to post new answers.
Hello,
It means that the timetracking field is not on the edit screen of this issue. You should add this field to the Edit screen.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the field on my screen, but still I'm getting the same error?
Is it due to API version? I'm using API version 2, right now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
After adding timetracking in the screen you'll have error,
Please check spelling mistake(Uppercase Issue) in below:
"timetracking": {
"originalestimate ": "1d 2h",
"remainingEstimate": "3h 25m"
}
'originalestimate' should be 'originalEstimate '.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.