Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Call Instructions:

  1. This interface is used to modify the confluence user

  2. This interface is called only by system administrators

  3. The new user name (login name) cannot appear in uppercase letters


Interface Information

Name

update user

Address

/rest/tools/1.0/api/user/update

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

key

Y

String

User key (unique identifier and cannot be modified)

name

N

String

username

fullName

N

String

full name

email

N

String

email

password

N

String

password

return value format

Field

Type

Description

code

int

Appendix - Code

msg

String

data

String

{

    "name":"user name",

    "key":"user key",

    "fullName":"full name",

    "email":"email"

}


Example Postman call


Example body request parameters:

{
    "key": "4028d02582446b9601824879b75d0000",
    "password":"965832"
}

Example return value

{
    "code": 0,
    "msg": "Success",
    "data": {
        "name": "amy",
        "key": "4028d02582446b9601824879b75d0000",
        "fullName": "t-amy",
        "email": "amy@shdsd.com"
    }
}

  • No labels