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.
@Keerthi - it appear the field is called isLocked however I am not sure if Locked was correct back in 2021 and has been changed to isLocked since
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.