Generic Webhooks

In the integrations area of your account, you'll see "Generic Webhooks" where you can select a feed. This is for adding/removing listeners using an external webhook tool meant for advanced users. You may need to contact a developer for assistance.

You'll POST to that webhook URL using the following JSON body format:

{  
  "email": "test@example.com",  
  "status": "active|inactive|deleted",
  "firstName":"Alfred",
  "lastName": "Pennyworth",
  "content": "Here's your feed!",  
  "sendEmail": true|false,
  "addTags": "member,bonus,affiliate",
  "removeTags": "trial,lead,enemy"
}

The webhook call returns 3 fields as shown below:

{
  "title": "Awesome Course Feed",
  "subscribePageLink": "https://podcasts.helloaudio.fm/subscribe/3232374a-3ed3-4b57-a97b-3a7410048949/NyGPMfIWme",
  "rssFeedLink": "https://podcasts.helloaudio.fm/podcast/3232374a-3ed3-4b57-a97b-3a7410048949/NyGPMfIWme"
}

The subscribePageLink points to the listener's webpage with the app buttons. The rssFeedLink is the actual podcast feed's URL to be pasted in apps or RSS readers. (The links shown above are just examples. They won't function.)