v10

latestOpenAPI 3.1.0raw.githubusercontent.com2025-06-19274659.0 KB
App Configuration

getVersion

Retrieve a specific version of an app configuration

get/v1/app-configurations/{appId}/versions/{version}

Path parameters

appIdstring required

ID of the app configuration

versionstring required

Version of the app configuration to retrieve

Response

App configuration for specific version

app_idstring required
namestring required

Name of the app

dev_modeboolean

Flag to indicate if the app is in dev mode. If true, the app takes the override_url property of components into account.

versionsstring[] required

List of available versions of the app

public_versionsstring[]

List of available public versions of the app

support_emailstring

Email address for support requests

latest_versionstring required

Latest version of the app

categorystring

Category of the app.

icon_urlstring

URL of the app icon.

documentation_urlstring

URL of the app documentation.

owner_org_idstring required

Organization ID of the app owner

internalboolean

Flag to indicate if the app is built by epilot.

publicboolean

Flag to indicate if the app is public.

pendingboolean

Flag to indicate if the app is pending for verification

versionstring required

Version of the app that is installed

is_betaboolean

Flag to indicate if the app is in beta.

deprecated_atstring

Timestamp when the app version is deprecated

changelogstring

Changelog for the app version

review_status'approved' | 'rejected' | 'pending'

Status of the review process

Example response

{
  "notifications": {
    "email": "developer@example.com"
  },
  "components": [
    {
      "configuration": {
        "override_dev_mode": {
          "override_url": "http://localhost:3000"
        },
        "component_url": "https://cdn.apps.com/123/v1.0.0/bundle.js"
      }
    }
  ]
}