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

# Get organisations apps operations

> Retrieve the set of all operations available for the App specified by appId.




## OpenAPI

````yaml get /organisations/{organisationId}/apps/{appId}/operations
openapi: 3.0.3
info:
  title: Switchboard API
  description: >-
    The Switchboard API provides users the ability to manage their Apps,
    Integrations and Workflows
  version: 0.0.1-alpha.0
servers:
  - url: https://platform.versori.com/api/switchboard/v1alpha1/
    description: Production server
  - url: http://localhost:8080/v1alpha1/
    description: Localhost
security:
  - apiKey: []
paths:
  /organisations/{organisationId}/apps/{appId}/operations:
    get:
      tags:
        - operations
      description: >
        Retrieve the set of all operations available for the App specified by
        appId.
      operationId: GetAppOperations
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - name: appId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/GetAppOperationsResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    GetAppOperationsResponse:
      description: >
        GetAppOperationsResponse is the response definition containing all
        Operations available to an App.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/OperationsPage'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    OperationsPage:
      type: object
      allOf:
        - $ref: '#/components/schemas/PageInfo'
        - type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/Operation'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
    PageInfo:
      type: object
      properties:
        totalCount:
          type: integer
        next:
          type: string
        prev:
          type: string
      required:
        - totalCount
    Operation:
      type: object
      properties:
        id:
          type: string
          description: >
            The ID of the operation, for OpenAPI this will be the `operationId`
            field if set, otherwise the request's

            type and path.
          example: GET /organisations/{organisationId}/apps/{appId}
        path:
          type: string
          description: The endpoint path for use in finding the path in the API spec.
        method:
          type: string
          description: Method is the HTTP method of the request.
        name:
          type: string
          description: A human-friendly name based on the operation ID.
        description:
          type: string
          description: A human-friendly description of what this operation does.
        type:
          type: string
          description: >
            Type is the type of operation, possible values are "request" and
            "callback":
              - "request" indicates that the operation is initiated by Switchboard
              - "callback" indicates that the operation is initiated by the application and sends data to Switchboard
      required:
        - id
        - path
        - method
        - name
        - type
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````