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

# List assignable user roles



## OpenAPI

````yaml /api/partner-api/provisioning.json get /v1/msp/admin/user-roles
openapi: 3.1.1
info:
  title: 'Cyrisma New Partner API: Provisioning'
  version: v1
servers:
  - url: https://{instance}.cyrisma.com/ta
    description: Tenant Authority, served under the partner's own CYRISMA instance host.
    variables:
      instance:
        default: ccnnnnnn
        description: The instance label of the tenant host issued to the partner.
security:
  - bearerAuth: []
tags:
  - name: Auth
  - name: MSP Administration
paths:
  /v1/msp/admin/user-roles:
    get:
      tags:
        - MSP Administration
      summary: List assignable user roles
      operationId: ListMspAdminUserRolesV1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MspAdminUserRoleResponse'
components:
  schemas:
    MspAdminUserRoleResponse:
      required:
        - key
        - display_name
        - can_write
      type: object
      properties:
        key:
          type: string
        display_name:
          type: string
        can_write:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        A machine-client token from POST /v1/auth/client-token. Provisioning and
        user management need the pulse.write scope; reads need pulse.read.
      scheme: bearer
      bearerFormat: JWT

````