Get Own Settings
GET /v1/account/setting/my
Retrieves the current tenant's configuration settings, including country, currency, and status information. This endpoint provides essential setup details to confirm that the tenant environment is properly configured for operations.
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-06-19T23:11:32.060Z",
"id": "settings-id-1"
}