Installed apps API

Manage apps installed in your Embed Workflow account

Available Endpoints

The Installed App Object

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

icon object

Icon configuration for the installed app

installed_schema object

Schema configuration for the installed app

last_used_at string

Last used at in specified timezone

last_used_at_string string

Last used at formatted as human-readable string

last_used_at_utc string

Last used at in UTC

name string

Display name of the installed app

object string

Object type identifier

previous_version string

Previously installed version of the app

upgrade_available boolean

Whether an upgrade is available for this app

upgraded_at string

Upgraded at in specified timezone

upgraded_at_string string

Upgraded at formatted as human-readable string

upgraded_at_utc string

Upgraded at in UTC

Installed App Object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "id": "01980228-a598-728a-9405-e1c9e0ac217f",
  "app_identifier": "slack",
  "app_version": "1.0.0",
  "available_version": "1.0.0",
  "groups": [],
  "icon": {},
  "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
}