Skip to main content
Member Adding API

Enables you to create members under a designated department.

Updated over 2 months ago

What is the Member Adding API?

Member Adding API enables you to create members under a designated department. These members are automatically activated and given direct access to Jodoo through Single Sign-On (SSO). They will be counted toward the total number of users, but there is no personal registration information like email and password.


API Calling

The API enables you to create members under a designated department. These members are automatically activated and given direct access to Jodoo through SSO. They will be counted toward the total number of users, but there is no personal registration information like email and password.

Request Rate: 20 times/second

Request Method: POST

Request Parameters:

Parameter

Required

Type

Description

name

Yes

String

Nickname

username

Yes

Member number (only support letters, digits, and underscores)

departments

No

Number

The department list of users

Sample Request:

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

Responses:

Parameter

Type

Description

user

JSON

The information of the added member 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?