Skip to content

Commit 802b28b

Browse files
author
Gonchik Tsymzhitov
committed
CONFLUENCE: Example related get user details
1 parent 5bcd0bd commit 802b28b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# coding: utf8
2+
from atlassian import Confluence
3+
4+
""" This example related get user details and his status"""
5+
6+
confluence = Confluence(
7+
url='http://localhost:8090',
8+
username='admin',
9+
password='admin')
10+
11+
result = confluence.get_user_details_by_username(username="gonchik.tsymzhitov", expand="status")
12+
print(result)

0 commit comments

Comments
 (0)