Front Applications API

The Applications API from Front — 1 operation(s) for applications.

Operations 1

POST /applications/{application_uid}/events Trigger application event #

Documentation

Specifications

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/front-applications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

front-applications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Channel Accounts Applications API
  contact:
    name: Front Platform
    url: https://community.front.com
servers:
- url: https://api2.frontapp.com
security:
- http: []
tags:
- name: Applications
paths:
  /applications/{application_uid}/events:
    post:
      summary: Trigger application event
      operationId: trigger-app-event
      description: 'Triggers an event on behalf of an application. These events can trigger Front workflows, like rules.

        For more information, see the [developer docs](https://dev.frontapp.com/docs/application-triggers#/).



        Required scope: `feature:app_trigger`'
      tags:
      - Applications
      parameters:
      - in: path
        name: application_uid
        required: true
        description: The application UID
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppEvent'
      responses:
        '204':
          description: No content
      x-required-scopes:
      - feature:app_trigger
components:
  schemas:
    AppEvent:
      required:
      - event_type
      - app_object
      properties:
        event_type:
          type: string
          description: The type of event this application should handle
        app_object:
          type: object
          description: 'Identifier for the app object to which the event is related. Either an ID or an external link is required.

            If both are provided, the ID will be favored.

            '
          properties:
            id:
              type: string
              description: ID of the app object
            ext_link:
              type: string
              description: External link of the app object
  securitySchemes:
    http:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-api-id: front
x-explorer-enabled: false
x-proxy-enabled: true
x-samples-enabled: true