Nasuni IAM API

The IAM API from Nasuni — 13 operation(s) for iam.

Operations 21

GET /iam/users Get Users #
GET /iam/users/{user_id} Get User #
GET /iam/users/{user_id}/roles Get User Roles #
GET /iam/roles Get Roles #
POST /iam/roles Create Role #
POST /iam/roles/duplicate Duplicate Role #
PATCH /iam/roles/{role_id} Update Role #
DELETE /iam/roles/{role_id} Delete Role #
GET /iam/roles/{role_id} Get Role #
GET /iam/roles/{role_id}/permissions Get Role Permissions #
GET /iam/permissions Get Permissions #
GET /iam/me Get My Roles and Permissions #
GET /iam/service_keys Get Service Keys #
POST /iam/service_keys Create Service Key #
GET /iam/service_keys/{service_key_id} Get Service Key #
PATCH /iam/service_keys/{service_key_id} Update Service Key #
DELETE /iam/service_keys/{service_key_id} Delete Service Key #
GET /iam/user_keys Get User Keys #
POST /iam/user_keys Create User Key #
GET /iam/user_keys/{user_key_id} Get User Key #
DELETE /iam/user_keys/{user_key_id} Delete User Key #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nasuni-iam-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nasuni-iam-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Portal IAM API
  version: 0.1.0
servers:
- url: https://am1.portal.api.nasuni.com
  description: Base URL for accounts assigned the US region.
- url: https://eu1.portal.api.nasuni.com
  description: Base URL for accounts assigned the EU region.
- url: https://ap1.portal.api.nasuni.com
  description: Base URL for accounts assigned the Asia-Pacific region.
security:
- HTTPBearer: []
tags:
- name: IAM
paths:
  /iam/users:
    get:
      tags:
      - IAM
      summary: Get Users
      operationId: get_users_iam_users_get
      responses:
        '200':
          description: Users retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/users/{user_id}:
    get:
      tags:
      - IAM
      summary: Get User
      operationId: get_user_iam_users__user_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Id
      responses:
        '200':
          description: User retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /iam/users/{user_id}/roles:
    get:
      tags:
      - IAM
      summary: Get User Roles
      operationId: get_user_roles_iam_users__user_id__roles_get
      security:
      - HTTPBearer: []
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Id
      responses:
        '200':
          description: User roles retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RoleDto'
                title: Response 200 Get User Roles Iam Users  User Id  Roles Get
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /iam/roles:
    get:
      tags:
      - IAM
      summary: Get Roles
      operationId: get_roles_iam_roles_get
      responses:
        '200':
          description: Roles retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RolesDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
    post:
      tags:
      - IAM
      summary: Create Role
      operationId: create_role_iam_roles_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateRoleDto'
        required: true
      responses:
        '200':
          description: Role created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoleDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Resource state conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/roles/duplicate:
    post:
      tags:
      - IAM
      summary: Duplicate Role
      operationId: duplicate_role_iam_roles_duplicate_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DuplicateRoleDto'
        required: true
      responses:
        '200':
          description: Role duplicated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoleDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Resource state conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/roles/{role_id}:
    patch:
      tags:
      - IAM
      summary: Update Role
      operationId: update_role_iam_roles__role_id__patch
      security:
      - HTTPBearer: []
      parameters:
      - name: role_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Role Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRoleDto'
      responses:
        '200':
          description: Role updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoleDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Resource state conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    delete:
      tags:
      - IAM
      summary: Delete Role
      operationId: delete_role_iam_roles__role_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: role_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Role Id
      responses:
        '200':
          description: Operation completed successfully
          content:
            application/json:
              schema: {}
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    get:
      tags:
      - IAM
      summary: Get Role
      operationId: get_role_iam_roles__role_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: role_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Role Id
      responses:
        '200':
          description: Role retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoleDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /iam/roles/{role_id}/permissions:
    get:
      tags:
      - IAM
      summary: Get Role Permissions
      operationId: get_permissions_for_role_iam_roles__role_id__permissions_get
      security:
      - HTTPBearer: []
      parameters:
      - name: role_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Role Id
      responses:
        '200':
          description: Role permissions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionsDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /iam/permissions:
    get:
      tags:
      - IAM
      summary: Get Permissions
      operationId: get_permissions_iam_permissions_get
      responses:
        '200':
          description: Permissions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionsDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/me:
    get:
      tags:
      - IAM
      summary: Get My Roles and Permissions
      operationId: get_my_roles_and_permissions_iam_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RolesAndPermissionsDto'
      security:
      - HTTPBearer: []
  /iam/service_keys:
    get:
      tags:
      - IAM
      summary: Get Service Keys
      operationId: get_service_keys_iam_service_keys_get
      responses:
        '200':
          description: Service keys retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceKeysDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
    post:
      tags:
      - IAM
      summary: Create Service Key
      operationId: create_service_key_iam_service_keys_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateServiceKeyRequestBodyDto'
        required: true
      responses:
        '200':
          description: Service key created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateServiceKeyResponseDto'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Resource state conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/service_keys/{service_key_id}:
    get:
      tags:
      - IAM
      summary: Get Service Key
      operationId: get_service_key_iam_service_keys__service_key_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: service_key_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Service Key Id
      responses:
        '200':
          description: Service key retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceKeyDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    patch:
      tags:
      - IAM
      summary: Update Service Key
      operationId: update_service_key_iam_service_keys__service_key_id__patch
      security:
      - HTTPBearer: []
      parameters:
      - name: service_key_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Service Key Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateServiceKeyRequestBodyDto'
      responses:
        '200':
          description: Service key updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceKeyDto'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Resource state conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    delete:
      tags:
      - IAM
      summary: Delete Service Key
      operationId: delete_service_key_iam_service_keys__service_key_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: service_key_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Service Key Id
      responses:
        '200':
          description: Operation completed successfully
          content:
            application/json:
              schema: {}
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
  /iam/user_keys:
    get:
      tags:
      - IAM
      summary: Get User Keys
      operationId: get_user_keys_iam_user_keys_get
      responses:
        '200':
          description: User keys retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserKeysDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
    post:
      tags:
      - IAM
      summary: Create User Key
      operationId: create_user_key_iam_user_keys_post
      responses:
        '200':
          description: User key created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserKeyDto'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - HTTPBearer: []
  /iam/user_keys/{user_key_id}:
    get:
      tags:
      - IAM
      summary: Get User Key
      operationId: get_user_key_iam_user_keys__user_key_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: user_key_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Key Id
      responses:
        '200':
          description: User key retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserKeyDto'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    delete:
      tags:
      - IAM
      summary: Delete User Key
      operationId: delete_user_key_iam_user_keys__user_key_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: user_key_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: User Key Id
      responses:
        '200':
          description: Operation completed successfully
          content:
            application/json:
              schema: {}
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    RolesDto:
      properties:
        items:
          items:
            $ref: '#/components/schemas/BaseRoleDto'
          type: array
          title: Items
      type: object
      required:
      - items
      title: RolesDto
    PermissionKey:
      type: string
      enum:
      - Configure FIQ Service
      - View Edge S3 Edge Service
      - Configure Edge S3 Edge Service
      - View FIQ Appliances
      - Configure FIQ Appliances
      - View UaaS Stacks
      - Edit UaaS Stacks
      - View SRaaS
      - View NDS Setup
      - Edit NDS Setup
      - View NDS Access Keys
      - Edit NDS Access Keys
      - Generate NDS Shared Access Signature (SAS)
      - View Service API Keys
      - Create Service API Keys
      - Edit Service API Keys
      - Delete Service API Keys
      - View User API Keys
      - Create User API Keys
      - Delete User API Keys
      - Manage Own User API Keys
      - View Account Info
      - Edit Account Info
      - Manage Licenses
      - View Analytics Connector
      - Edit Analytics Connector
      - Create Analytics Connector
      - View Activity Logs
      - View Appliance Installs
      - Download Appliance Software
      - Create GFA Keys
      - View GFA Keys
      - Delete GFA Keys
      - View Active Portal Users
      - View Roles and Permissions
      - Delete Roles
      - Edit Roles
      - Create Roles
      - View S3 Edge Configuration
      - Edit S3 Edge Configuration
      - Delete S3 Edge Configuration
      - View Serial Numbers
      - View Serial Auth Codes
      - Decommission Appliances
      - Perform Disaster Recovery
      - View SSO Configuration
      - Edit SSO Configuration
      - View Web Access SSO Configuration
      - Edit Web Access SSO Configuration
      - View Ops IQ Appliance Dashboard
      - View Ops IQ Volume Dashboard
      - Install New Appliances
      - Manage MFA Configuration
      - View Volume Info
      - Manage Snapshot
      - View Notifications
      - View AI Activate Indexes
      - Edit AI Activate Indexes
      - View AI Activate Consumption
      - View AI Activate MCP Server
      - Edit AI Activate MCP Server
      - View AI Activate Remote Support
      - Edit AI Activate Remote Support
      - View Cloud Credentials
      - Create / Edit Cloud Credentials
      - Delete Cloud Credentials
      title: PermissionKey
      description: 'Enum representing all possible permission keys for the Portal API, including NDS (Nasuni Da

# --- truncated at 32 KB (42 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/nasuni/refs/heads/main/openapi/nasuni-iam-api-openapi.yml