---
title: "Get user settings"
method: GET
path: "/v1/user_settings"
tags: ["User settings"]
---

# Get user settings

`GET /v1/user_settings`

Returns the authenticated user's settings (notification toggles and
low-balance alert threshold). The raw `low_balance_threshold_cents` is not
returned; the amount is exposed via `low_balance_threshold_amount`. This is a
**per-user** resource and is not company-scoped.

## Parameters

- `#/paths/~1v1~1users/get/parameters/0` — unresolved $ref

## Response `200`

The user settings.

- UserSetting — Per-user notification preferences and low-balance alert threshold. The raw `low_balance_threshold_cents` column is not serialized; the amount is exposed via the computed `low_balance_threshold_amount` instead.
  - `id` string, uuid, required
  - `user_id` string, required
  - `approved_transaction_notify` boolean
  - `declined_transaction_notify` boolean
  - `banking_transaction_notify` boolean
  - `pending_transaction_notify` boolean
  - `low_balance_notify` boolean
  - `low_balance_threshold_amount` integer — Low-balance alert threshold as a whole-currency amount (computed from cents).
  - `low_balance_threshold_currency` string
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `404` — User settings not found

---

[API](https://skmtc.dev/cardda/apis/banking-api.md) · [All operations](https://skmtc.dev/cardda/apis/banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cardda/banking-api/revisions/ff1aeb3fda8b/schema)
