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

# Resolve Scopes • AI Agent SDK

> resolve_scopes: Resolve the operator scopes granted to ``token``.

# resolve\_scopes

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**GatewayConfig**](../classes/GatewayConfig) class in the [**config**](../modules/config) module.

Resolve the operator scopes granted to `token`.

Backward-compatible contract:

* No scope policy configured  -> all scopes (today's behaviour).
* Policy configured + token listed -> that token's scopes.
* Policy configured + token absent/None -> no scopes (deny).

Scope names are returned as plain strings so callers in the wrapper
can compare against `OperatorScope` values without importing them.
Unknown scope names (e.g. typos in `gateway.yaml`) are dropped and a
warning is logged so misconfiguration surfaces early instead of
silently denying all access.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def resolve_scopes(token: Optional[str]) -> List[str]
```

## Parameters

<ParamField query="token" type="Optional[str]" required={true}>
  No description available.
</ParamField>

### Returns

<ResponseField name="Returns" type="List[str]">
  The result of the operation.
</ResponseField>

## Uses

* `warning`
* `logging.getLogger`

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/gateway/config.py#L839">
  `praisonaiagents/gateway/config.py` at line 839
</Card>
