Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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)

  • No labels