# getBooleanEnabled

#### getBooleanEnabled

Get whether the boolean calculation is currently active on a boolean operator.

#### Signature

```
getBooleanEnabled(objectNameOrId: string): Promise<boolean>
```

#### Parameters

<table><thead><tr><th width="182.1875">Parameter</th><th width="117.6640625">Type</th><th width="124.60546875">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>objectNameOrId</code></td><td><code>string</code></td><td>Yes</td><td>Name or ID of the boolean operator object</td></tr></tbody></table>

#### Returns

`Promise<boolean>` - `true` if the boolean calculation is active, `false` if disabled.

#### Examples

```js
const isEnabled = await api.getBooleanEnabled("Boolean 1");
console.log("Boolean active:", isEnabled); // true or false

// Works with object ID too
const isEnabled = await api.getBooleanEnabled("23a580bc-400a-49ca-9757-c2b54ab15b8d");
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.vectary.com/api/model-api/api-reference/getbooleanenabled.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
