List Users Endpoint
テナントのメンバー一覧(Sec12/31・/settings/members 用)。admin 以上。
password_hash 等の秘匿フィールドは返さない。
GET
/usersHeader parameters
authorizationstring | anyX-Api-Keystring | anyResponses
200Successful Response
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredRequest
curl -X GET "/users"const response = await fetch("/users", {
method: "GET"
});import requests
response = requests.get(
"/users",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}