We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f72deb commit b262e32Copy full SHA for b262e32
README.rst
@@ -58,6 +58,20 @@ Also, you can use the Bitbucket module e.g. for get project list
58
data = bitbucket.project_list()
59
print(data)
60
61
+Now you can use Jira Service Desk module. See docs.
62
+Example to get your requests:
63
+
64
+.. code-block:: python
65
66
+ from atlassian import ServiceDesk
67
68
+ sd = ServiceDesk(
69
+ url='http://localhost:7990',
70
+ username='admin',
71
+ password='admin')
72
+ my_requests = sd.get_my_customer_requests()
73
+ print(my_requests)
74
75
Please make sure, you've checked ``examples/`` directory on how to build scripts using the API.
76
If you want to see response in pretty print format json. Feel free for use construction like:
77
0 commit comments