Available apps API

Browse and discover apps that can be integrated with Embed Workflow

Available Endpoints

The Available App Object

name string

Name of the app

app_identifier string

Unique identifier for the app

description string

Description of the available app

icon object

Icon configuration for the available app

latest_version string

Latest available version of the app

object string

Object type identifier

primary_category string

Primary category classification for the app

schema object

App schema configuration

secondary_category string

Secondary category classification for the app

Available App Object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "name": "GitHub",
  "app_identifier": "github",
  "description": "Collaboration platform for code hosting, issue tracking, and project management",
  "icon": {
    "type": "remote",
    "background_color": "slate:50",
    "url": "https://s3.us-east-1.amazonaws.com/cdn.ewf.to/apps/github.svg"
  },
  "latest_version": "1.0.0",
  "object": "available_app",
  "primary_category": "developer_tools",
  "secondary_category": "productivity"
}