Member Adding APIAPI Explorer

Introduction

API Introduction

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 URL: https://api.jodoo.com/api/v5/corp/user/create

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
  }
}

Was this information helpful?
Yes
NoNo
Need more help? Contact support