...
Note. You can find custom field ID at, Issues > Custom Fields > Click Edit > You will find in URL.
Supported System fields:
Code Block |
---|
summary, description, key or issuekey, type or issuetype, status, priority, components, labels, fixversions, affectsversions, assignee, reporter, environment |
To generate basic access token with username and password:
Code Block |
---|
$ python
>>> import base64
>>> string = 'username:password'
>>> data = base64.b64encode(string.encode())
>>> print(data)
b'ZGF0YSB0byBiZSBlbmNvZGVk'
>>>
//your basic access token: ZGF0YSB0byBiZSBlbmNvZGVk |
...