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

# List IAM Actions

> Catalog of grantable IAM actions for the organization.



## OpenAPI

````yaml GET /orgs/{org_id}/iam/actions
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/iam/actions:
    get:
      tags:
        - iam
      description: Catalog of grantable IAM actions for the organization.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Action catalog visible to this org
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListActionsResBody'
        '403':
          description: Forbidden
      security:
        - bearer_auth: []
components:
  schemas:
    ListActionsResBody:
      type: object
      required:
        - actions
      properties:
        actions:
          type: array
          items:
            $ref: '#/components/schemas/ActionInfo'
          description: Grantable actions for the organization.
    ActionInfo:
      type: object
      required:
        - key
        - label
        - description
      properties:
        description:
          type: string
          description: One-sentence description of what the action allows.
        key:
          type: string
          description: Action key to grant on a role.
        label:
          type: string
          description: Short label for display.
        resource:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/ActionResourceInfo'
              description: >-
                Resource shape for typed actions, or null when the action is
                org-wide.
    ActionResourceInfo:
      type: object
      required:
        - kind
        - segments
        - template
      properties:
        kind:
          type: string
          description: >-
            Stable wire name for the resource kind (for example `project` or
            `project_env`).
        segments:
          type: array
          items:
            type: string
          description: Ordered segment names that make up the resource path template.
        template:
          type: string
          description: Example resource path with `{id}` placeholders.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````