Member Information Query APIAPI Explorer
Introduction
API Introduction
Member Information Query API enables you to get the name and department number of the specified member according to username.
API Calling
The API enables you to get the name and department number of the specified member according to username.
Request URL: https://api.jodoo.com/api/v5/corp/user/get
Request Rate: 30 times/second
Request Method: POST
Request Parameters:
Parameter | Required | Type | Description |
username | Yes | String | Refers to User No. in Contacts. |
Request Sample:
{
"username": "jodoo"
}
Responses:
Parameter | Description |
user | Member information, the same as the return data structure of a single member. |
Sample Response:
{
"user": {
"username": "jodoo",
"name": "Harry",
"departments": [1,3],
"type": 0,
"status": 1,
"integrate_id": "jodoo"
}
}