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

Campaign

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

In the ACTV8me ecosystem, a campaign functions as a mechanism to group triggers and control content delivery behavior. In fact, content delivery is only possible after an admin user configures a campaign on behalf of a client.

Create a Campaign

The following endpoint allows you to create a campaign:

POST /campaign

Reference: https://docs.actv8me.com/v1.2/reference/campaign-3#post_campaign

Get all campaigns

You may retrieve all campaigns for a client by calling the following endpoint:

GET /campaign?client_id={client_id}

Reference: https://docs.actv8me.com/v1.2/reference/campaign-3#get_campaign

Get a specific campaign

To get the details of a specific campaign, you should use the following endpoint:

GET /campaign/{id}

Reference: https://docs.actv8me.com/v1.2/reference/campaign-3#get_campaign-id

Update a campaign

To update the configuration of a specific campaign, you should use the following endpoint:

PUT /campaign/{id}

Reference: https://docs.actv8me.com/v1.2/reference/campaign-3#put_campaign-id

Delete a campaign

If a campaign needs to be deleted, you should use the following endpoint:

DELETE /campaign/{id}

Reference: https://docs.actv8me.com/v1.2/reference/campaign-3#delete_campaign-id


What’s Next