GET
/api/admin/settingsAdminList server settings
operationId
get_api_admin_settingsAdministrationAuthentication & permissionsAdmin
Platform administrators only
- Accepted credentials
- Auth server session (refresh token cookie)
cookie "refresh_token_<auth_server_app_id>" - Access token (cookie)
cookie "access_token_<auth_server_app_id>" - Access token (Bearer)
Authorization: Bearer <JWT>
- Auth server session (refresh token cookie)
- Who may call
- Platform administrators only
Responses
application/json
| Property | Type | Description |
|---|---|---|
| success* | true | |
| data* | object | |
| settings* | ServerSettingRecord[] | |
| key* | string | |
| value | any | The setting's current value (type depends on the key) |
| valueType* | string | |
| description* | string | null | null | |
| updatedAt* | number | Unix epoch milliseconds |
| updatedBy* | string | null | null | uid of the administrator who last changed it |
JSONExample
"success"true
"data"
"settings"
Example request
bashcurl
curl -X GET 'https://auth.schemavaults.com/api/admin/settings' \
-b 'refresh_token_<auth_server_app_id>=<value>'