User Active and Inactive
Call Instructions:
This interface is used to enable or disable the confluence user
This interface is called only by system administrators
Interface Information | |||
---|---|---|---|
Name | User Active and Inactive | ||
Address | /rest/tools/1.0/api/user/active | ||
Method | POST | ||
Return Type | Json | ||
Authentication | Basic,token | ||
Header Parameter | |||
Parameter name | Required | Parameter type | Description |
ContentType | Y | String | application/json |
body Parameters | |||
Parameter name | Required | Parameter type | Description |
name | Y | String | username |
isActive | Y | boolean | is active |
return value format | |||
Field | Type | Description | |
code | int | ||
msg | String | ||
data | String | { "name":"user name", "key":"user key", "fullName":"full name", "email":"email", "isActive":true } |
Example Postman call
Example body request parameters:
{
"name":"amy",
"isActive": "false"
}
Example return value
{
"code": 0,
"msg": "Success",
"data": {
"name": "amy",
"key": "4028d02582446b9601824879b75d0000",
"fullName": "t-amy",
"email": "amy@shdsd.com",
"isActive": false
}
}