Add User
Adds new user to the space. “Project Administrator” cannot add “Admin” user. You can’t use this API at new plan space.
Role
Administrator
Project Administrator
Method
POST
URL
/api/v2/users
Form parameters
Content-Type:application/x-www-form-urlencoded
Parameter Name | Type | Description |
---|---|---|
userId (Required) | String | user ID |
password (Required) | String | password |
name (Required) | String | nickname |
mailAddress (Required) | String | Email address |
roleType (Required) | Number | Administrator(1) Normal User(2) Reporter(3) Viewer(4) Guest Reporter(5) Guest Viewer(6) |
Response example
Status Line / Response Header
HTTP/1.1 201 CREATED
Content-Type:application/json;charset=utf-8
Location:https://xx.backlogtool.com/user/eguchi
Response Body
{
"id": 1,
"userId": "admin",
"name": "admin",
"roleType": 1,
"lang": "ja",
"mailAddress": "eguchi@nulab.example",
"lastLoginTime": "2022-09-01T06:35:39Z"
}