Skip to main content
GET
https://api.voxmind.ai
/
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"
}

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"
}