These docs are for v1.2. Click to read the latest docs for v1.3.

Application

For the complete documentation on the "application" resource, please refer to https://docs.actv8me.com/v1.2/reference/application-1

From the Management API perspective, an application represents a registered API client (i.e., a web application, mobile app, server process, etc.) that uses an API key to send requests to the ACTV8me backend services to manage client resources such as campaigns, triggers, and content.

Create an Application

An admin that has been granted the "create application" permission can create applications on behalf of the client. The application model contains configuration fields that enable you to control the behavior of the application dynamically.

POST /application

Reference: https://docs.actv8me.com/v1.2/reference/application-1#post_application

🚧

You may create as many admin and end-user applications as your client needs.

Get all applications

The following endpoint allows you to retrieve all the applications that you (or another admin) have registered for your client:

GET client/{id}/application

Reference: https://docs.actv8me.com/v1.2/reference/client#get_client-id-application

Get a specific application

Once an application has been created, you may use the following endpoint to retrieve its configuration:

GET application/{id}

Reference: https://docs.actv8me.com/v1.2/reference/application-1#get_application-id

Update application

The following endpoint allows you to update the configuration of your application:

PUT application/{id}

Reference: https://docs.actv8me.com/v1.2/reference/application-1#put_application-id

Delete application

You may use the following endpoint to delete a specific application:

DELETE application/{id}

❗️

Deleting your application will invalidate the API keys attached to it. This can result in erratic behavior from any application that depends on the ACTV8me backend servers. This action cannot be undone.

Reference: https://docs.actv8me.com/v1.2/reference/application-1#delete_application-id


What’s Next