The API wrapper allows you to interact with other aspects of the Jira instance.
Usage
Below you can check examples of usage for this class.
# Search for Issues issues = api.search_issues("your jql here") # Get Instance Info fields = api.fields projects = api.projects issuetypes = api.issuetypes # Edit some fields and get a response api.edit_issue("EFJ-1", {"fieldkey": newvalue}) # Create an issue api.create_issue(project_key_or_id: int or str, issuetype: int or str, summary, **kwargs) # Use the General API r = api.get(url) r = api.put(url: str, data: dict) r = api.post(url: str, data: dict)