Skip to main content

Update Own Settings

PUT /v1/account/setting/my

Updates the configuration settings for the current user's tenant. This endpoint allows modification of preferences such as currency and setup status. Once updated, it returns the full settings object, including timestamps and country details.

Request Body

{
"currency": "NOK",
"isConfigured": true
}

Response Example

{
"_id": "settings-id-1",
"tenant": "tenant-id-1",
"country": {
"code": "NO",
"country": "Norway"
},
"currency": {
"code": "NOK",
"title": "Norwegian Krone"
},
"isConfigured": true,
"created": "2025-06-19T23:09:09.206Z",
"updated": "2025-10-20T11:56:49.461Z",
"id": "settings-id-1"
}