Retrieve installed app

Retrieve installed app

Endpoint

GET https://embedworkflow.com/api/v1/installed_apps/{app_identifier}

Path Parameters

app_identifier string, required

App indentifier

Response

Returns successful.

Response Properties

id string

System-generated unique identifier

app_identifier string

Unique identifier for the app

app_version string

Currently installed version of the app

available_version string

Latest available version of the app

groups array

Permission groups that can access this app

Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "id": "01980228-a76a-794b-a09f-6d95c162e002",
  "app_identifier": "slack",
  "app_version": "1.0.0",
  "available_version": "1.0.0",
  "groups": [],
  "icon": {},
  "installed_schema": {},
  "last_used_at": null,
  "last_used_at_string": null,
  "last_used_at_utc": null,
  "name": "Slack",
  "object": "installed_app",
  "previous_version": null,
  "upgrade_available": false,
  "upgraded_at": null,
  "upgraded_at_string": null,
  "upgraded_at_utc": null
}