List DW users
GET/unit/user
Lists the DW users in the service unit.
Request
Query Parameters
pageSize string
Possible values: >= 1
Default value: 10
The number of items returned per page.
pageNumber string
Possible values: >= 1
Default value: 1
The sequence number of the current page.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
code int32
The response code.
data
object
The paginated list of DW users.
pageNumber int64
The sequence number of current page.
pageSize int64
The number of items returned per page.
records
object[]
The records in the current page.
createTime date-time
The creation time of the DW user.
creatorAccount string
The creator of the DW user.
email string
The email address of the DW user.
id string
The ID of the DW user.
name string
The name of the DW user, which is unique in the instance. The name is the email address.
total int64
The number of pages in total.
msg string
The response message.
{
"code": 0,
"data": {
"pageNumber": 0,
"pageSize": 0,
"records": [
{
"createTime": "2023-05-18T14:20:11.01+09:00",
"creatorAccount": "62023101198877",
"email": "[email protected]",
"id": "b6128428-c9d3-4066-b31e-d7cec62ced27",
"name": "[email protected]"
}
],
"total": 0
},
"msg": "string"
}
Loading...