> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxmind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Settings

> Retrieve your organisation's configuration settings.

## Overview

Returns the configuration settings for your organisation. Settings control operational behaviour like alert preferences and notification thresholds. These are organisation-wide and affect all API calls made under your `orgId`.

## Path Parameters

<ParamField path="orgId" type="string" required>
  Your organisation's unique identifier.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.voxmind.ai/organisations/42/settings \
    -H "Authorization: Bearer YOUR_API_TOKEN" \
    -H "Accept: application/json"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 1,
    "org_id": 42,
    "settings": {
      "alert_on_failure": true
    },
    "created_at": "2025-01-15T09:00:00Z",
    "updated_at": "2025-02-01T14:22:00Z"
  }
  ```
</ResponseExample>
