Checking Subscription Status (API)

This document aims to detail how to check subscriptions status of subscribers.

You can also check your users subscription status via our RESTFul api with the following POST request:

https://subscription-api.mobivate.com/subscriptions/v1/<campaign_id>/status

Parameters

The only parameter required for the request is the statuses you check.

Please note: You can include multiple statuses in your request, for example: 'active', 'inactive' etc.

Successful response

If your user's status has been checked successfully you will receive the following response, HTTP Status Code 200:

{
  "authenticated" : True,
  "valid_ " : True,
  "valid_campaign" : True,
  "campaign_status" : "active",
  "campaign_name" : "Test Campaign",
  "campaign_service" : "12345",
  "state" : ('active','inactive','nf','nfi','ping','onhold','blocked','reinvite','doi-onhold',
  'doi-declined','suspended','investigate','unsub'),
  "error" : Null,
  "reference": "AP:aaaaaaa-bbbbbbbbb-cccccccc"
}

Last updated