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

# Is Authorized Sync

> Checks whether the logged-in member is authorized to perform [action] on [resourceId] using the locally cached RBAC policy. No network request is made; returns `false` if no policy is cached yet.

## Returns

`true` if the member is authorized; `false` otherwise or if no policy is cached.

<RequestExample>
  ```js theme={null}
  const allowed = StytchB2B.rbac.isAuthorizedSync("documents", "read")
  ```
</RequestExample>
