Skip to main content

Gets the user setting list

GET /v1/usersetting/list

Summary

Gets the user setting list.

Details

Supports an optional userid query parameter. Admins can use it to read another user's settings.

Authentication

No operation-level security requirement is documented here.

Parameters

None documented here.

Request Body

No request body is documented here.

Responses

200

Success

application/json

  • array of UserSetting
    • key (integer (int64), optional)
    • settingName (string, optional)
    • settingValue (string, optional)
    • creationDate (string (date-time), optional)

Example

[
{
"key": 1,
"settingName": "Example value",
"settingValue": "Example value",
"creationDate": "2026-03-30T12:00:00.0000000Z"
}
]