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

# buildops-permissions

> BuildOps Permissions - roles and permissions

**Server path:** `/buildops-permissions` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                  | Description             |
| ----------------------------------------------------------------------------------------------------- | ----------------------- |
| [`buildops-permissions_get_role_for_employee`](#buildops-permissions_get_role_for_employee)           | Get Role by Employee ID |
| [`buildops-permissions_get_simple_tenant_roles_v2`](#buildops-permissions_get_simple_tenant_roles_v2) | List Tenant Roles       |

***

## buildops-permissions\_get\_role\_for\_employee

Get Role by Employee ID

**Parameters:**

| Parameter    | Type   | Required | Default | Description |
| ------------ | ------ | -------- | ------- | ----------- |
| `employeeId` | string | Yes      | —       | Employee Id |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "employeeId": {
        "type": "string",
        "description": "Employee Id"
      }
    },
    "required": [
      "PCID",
      "employeeId"
    ]
  }
  ```
</Expandable>

***

## buildops-permissions\_get\_simple\_tenant\_roles\_v2

List Tenant Roles

**Parameters:**

| Parameter  | Type    | Required | Default | Description |
| ---------- | ------- | -------- | ------- | ----------- |
| `isActive` | boolean | No       | —       | Is Active   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "isActive": {
        "type": "boolean",
        "description": "Is Active"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
