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

# Get in-app capabilities

> Check whether in-app messaging is enabled for the account and which journey event types can trigger real-time in-app delivery.



## OpenAPI

````yaml GET /inapp/capabilities
openapi: 3.0.1
info:
  title: Masivo's REST API
  description: Learn how to use Masivo's REST API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.masivo.ai/api/storefront/v1
security:
  - bearerAuth: []
paths:
  /inapp/capabilities:
    get:
      description: >-
        Check whether in-app messaging is enabled for the account and which
        journey event types can trigger real-time in-app delivery.
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/InAppCapabilities'
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    InAppCapabilities:
      type: object
      properties:
        inappEnabled:
          type: boolean
          description: True when the account has at least one active in-app template
        eventTypes:
          type: array
          items:
            type: string
          description: Journey event types that can trigger real-time in-app delivery
    Error:
      required:
        - error
        - details
      type: object
      properties:
        error:
          type: string
        details:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````