Hi,
I have a problem about API: Get group members.
I made by Python for code but get 401 error following.
***********************************************
"message": "Client must be authenticated to access this resource.",
"status-code": 401
***********************************************
Can you help me??
Hi,
I wanted to let you know that the functionality you're looking for is available with Group Master for Jira (Data Center)!
You can check it out here:
Group Master for Jira - Data Center
In addition to managing group members, Group Master offers several advanced features. Give it a try.
Cheers,
Nina
Status code 401 means that your request is not authenticated correctly.
If you send the request using CURL, does it work?
(I am asking it because I think it is easier to make sure that your username and token are valid and correctly encoded to the BASIC auth header with CURL, and then look at the Python code only if you succeeded with CURL.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Aron,
Thank you for your reply,
Yes, I understand about 401 meaning which is authenticated error.
It is use Python.
Following is excerpt...
**********************
query = {
'groupId': '{XXXXXXXXXXXXXXXXXXXXX}'
}
**********************
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, based on the documentation, this end-point requires Jira admin permissions:
So, is the user with the given email address ("xxxxi@abc.com" in your example) a Jira admin?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, my account is in site-admin and jira-admins-team-nnnnnnnnnnnnnnnnn.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.