Acquisition Campaign API

An acquisition campaign is a way for you to add new subscribers to your lists. Setting up the campaign is done in our platform, but you can use our public Acquisition Campaign API to retrieve information about your current acquisition campaigns and participants.

Available Methods

Available Callbacks

Elements & Attributes

Data ElementTypeDescription
acquisition_idStringVibes alphanumeric unique identifier for each acquisition campaign.
descriptionStringThe name of the acquisition campaign (identifier description).
campaign_typeStringThis is stored as a code value - for example: ACQUISITION.
statusStringThe status of the campaign. Examples (always lowercase):

- scheduled
- active
- deleted
- past
start_dateTimestampThe date the campaign is starting. It should be in the ISO 8601 format - for example: 2016-04-05T14:30Z.
end_dateTimestampThe date the campaign is ending. It should be in the ISO 8601 format - for example: 2017-04-05T14:30Z.
acquisition_campaign
keywords
CollectionThe keywords (one or more) that a user can send in via SMS to join the campaign and begin the subscription process.

Examples: "COUPON", "FASHION", "LOYALTY", "JOINUP".
sourcecodeStringThe short or long code the acquisition campaign is on.
urlStringUnique resource URL for the acquisition campaign.
created_dateTimestampThe date this acquisition campaign was created. It should be in the ISO 8601 format - for example: 2016-04-05T14:30Z. This field is system-generated and cannot be updated via the API.
updated_dateTimestampThe date this acquisition campaign was last updated. It should be in the ISO 8601 format - for example: 2017-04-05T14:30Z. This field is system-generated and cannot be updated via the API.

Example Entity

{
   "acquisition_id":"Kwnl5OL3",
   "description":"Great Acquisition Campaign",
   "campaign_type":{
      "code":"ACQUISITION"
   },
   "status":"active",
   "start_date":"2021-04-05T14:30Z",
   "end_date":"2031-04-05T14:30Z",
   "acquisition_campaign":{
      "keywords":[
         "STORE",
         "STOR",
         "STORES"
      ]
   },
   "sourcecode": "65301",
   "url":"/companies/:company_key/campaigns/acquisition/Kwnl5OL3",
   "created_date":"2022-04-05T14:30Z",
   "updated_date":"2022-04-08T14:30Z"
}