Applications API

API methods to work with Applications

Channex.io provide functionality extensions what is called "Applications".

This Applications provide ability to work with OTA Messages and Reviews, setup integration with Zapier or Make.com, add Payment Application or Stripe Tokenization app.

Please, take a look into our Applications page to get full list of available Applications.

Get List of Applications

Retrieve list of available Applications.

Request:

GET /api/v1/applications

Get List of Installed Applications

Retrieve list of installed Applications.

Request:

GET /api/v1/applications/installed

Install Application

Method to add Application into Property

Request:

POST /api/v1/applications/install

{
    "application_installation": {
        "property_id": "18535b75-26a0-4716-ae99-0578006639c5",
        "application_code": "channex_messages"
    }
}

At one of previous version we suggest to use application_id for installation process, but now, we are recommend to use application_code what can be safety saved as Constant at your environment.

Application configuration

Please, keep in mind, some of application require additional configuration after installation (such us Payment App). Please, contact with our support team to get full API information to configure application.

Uninstall Application

Remove installed application

Request:

DELETE /api/v1/applications/:application_installation_id/uninstall

Last updated

Was this helpful?