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

> Reference and syntax for the CREATE ORGANIZATION ROLE command.

# CREATE ORGANIZATION ROLE

Creates a new organization role.

For more information, see [Role-based access control](/guides/security/rbac).

## Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
CREATE ORGANIZATION ROLE [ IF NOT EXISTS ] <role_name>
```

## Parameters

| Parameter     | Description           |
| :------------ | :-------------------- |
| `<role_name>` | The name of the role. |

## Examples

The following command will create a role `account_manager`:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
CREATE ORGANIZATION ROLE "account_manager"
```

The following command will create a role "account\_manager\_2":

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
CREATE ORGANIZATION ROLE IF NOT EXISTS "account_manager_2"
```

In the previous code example, if `account_manager_2` exists, no error message is returned.
