Skip to main content
Member Update API

Enables you to update the specified member's information, such as department or nickname.

Updated over 2 months ago

What is the Member Update API?

Member Update API enables you to update the specified member's information, such as department or nickname.


API Calling

The API enables you to update the specified member's information, such as department or nickname.

Note:

Member numbers cannot be modified.

Request Rate: 20 times/second

Request Method: POST

Request Parameters:

Parameter

Required

Type

Description

username

Yes

String

Member ID

name

No

Nickname

departments

Number

The department list of users.

Sample Request:

{
    "username": "jodoo",
     "name": "Harry",
    "departments": [4]
}

Responses:

Parameter

Type

Description

user

JSON

The modified member information is the same as the returned data structure of a single member.

Sample Response:

{
  "user": {
    "username": "jodoo",
    "name": "Harry",
    "departments": [1,3],
    "type": 0,
    "status": 1
  }
}


I have finished reading. 🏆

👉I can't wait to SET THE API.

👉I need more HELP in Discord Forum.

Did this answer your question?