**Version: 202601**

# Get theme global config

**GET** `/openapi/2026-01/themes/edit-sessions/:oseid/files/:doc_id/global`

Get the current values of the theme settings within an edit session, plus the configuration definitions of each primary category.

## Request

**Path Parameters**

- `oseid` string (required)

  Edit session ID
- `doc_id` string (required)

  Document (template file) ID

**Query Parameters**

- `name` string

  Optional case-insensitive primary-category name filter; empty = all

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `data` object

    The theme global config: `settings` is the flat map of current setting values, `schemas` is the array of primary categories. The request's `name` filters `schemas`

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "data": {}
  }
}
```
