Update installed app

Update installed app

Endpoint

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

Path Parameters

app_identifier string, required

App indentifier

Request Body

groups array, optional

User permission groups. Only available to users with admin role.

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

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

Errors

  • 404 - not found
Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "id": "0198c2e9-c1a7-776d-99a1-9416552d184f",
  "app_identifier": "slack",
  "app_version": "1.0.0",
  "available_version": "1.0.0",
  "groups": [
    "admins"
  ],
  "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
}