As stated in the question I want to create a team managed Kanban in order to have the option of creating new Issues directly on the Kanban board (Which isn't possible on the company based one).
In order to do that I also need a lot of custom fields and I would want to make some of the mandatory (e.g. Where should the object be sent and until when is it needed)
Sadly I don't see any option to make fields mandatory. Is there a workaround for this?
Thx for your answers
It looks to me like your code is not logging you in. Without a login, you don't have permission to updates the issue.
I am using the same procedure to get the issue details using request and also able to access fields using the below code,
AP.require(['request'], function(request) {
request({
url: 'https://mysite.atlassian.net/rest/api/2/issue/XYZ-5',
type: 'GET',
success: function(response) {
alert("success");
},
error: function (response) {
alert('fail... ');
}
});
});
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Again, your code does not appear to log in, so it has no permission to do things.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using the above code GET method worked for me, only POST didn't work. So, can you please help me working with Edit Issues using POST method with a basic example.
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.