The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Want to know Jira Align API for Deactivate the user
Referd the below Doc but not able to find the API
https://<site-url>/rest/align/api/docs/index.html
Hi @Mohamed Musheer,
Nice question!
Assuming a few things...
a) You've read the following Help Center articles: 10X: API 2.0
b) You've looked at the specific documentation (aka Swagger), that's available in your Jira Align instance: https://instance.jiraalign.com/rest/align/api/docs/index.html
c) You have a valid API 2.0 token, and corresponding grants to perform this operation in UI
To deactivate a user, by using Jira Align API 2.0, make the following call:
PATCH https://instance.jiraalign.com/rest/align/api/2/Users/<id>
Where <id> is the userId of your user.
As request body, use the following JSON:
[
{
"op": "replace",
"path": "/locked",
"value": -1
}
]
A successful deactivation call should return an HTTP 204 (Success) response code.
The roadmap challenge for large scale agile enterprises Regardless of the agile framework you use, the agile enterprise has a massive scale with the challenge to connect hundreds of teams and thous...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.