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

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": "01980228-a7b8-7a23-95ba-d4603f7d2450",
  "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
}