Skip to main content
GET
/
organisations
/
{orgId}
/
settings
curl -X GET https://api.voxmind.ai/organisations/42/settings \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
{
  "id": 1,
  "org_id": 42,
  "settings": {
    "alert_on_failure": true
  },
  "created_at": "2025-01-15T09:00:00Z",
  "updated_at": "2025-02-01T14:22:00Z"
}

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.

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

orgId
string
required
Your organisation’s unique identifier.
curl -X GET https://api.voxmind.ai/organisations/42/settings \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
{
  "id": 1,
  "org_id": 42,
  "settings": {
    "alert_on_failure": true
  },
  "created_at": "2025-01-15T09:00:00Z",
  "updated_at": "2025-02-01T14:22:00Z"
}