How does Revive Social connect with Zapier?

Integrating your WordPress plugin with Zapier enables seamless automation of sharing your posts on various social media platforms. This guide will walk you through setting up a webhook and using Zapier to automate the process, ensuring your content reaches a wider audience effortlessly.

Prerequisites

Before you begin, ensure you have the following:

  • A Zapier account (with at least a Professional plan).
  • Basic understanding of webhooks.

What do we send to Zappier?

When a new post is ready to share, the following JSON payload will be sent to the webhook URL:

    {
      "postId": 376,
      "message": "Post Ready to Share 1",
      "postUrl": "http://localhost:10005/post-ready-to-share/?utm_source=webhook&utm_medium=social&utm_campaign=ReviveOldPost",
      "featuredImage": ""
    }

Field Descriptions

  • postId: The ID of the post.
  • message: The processed message (all options from Post Format are applied)
  • postUrl: The URL of the post, including UTM parameters.
  • featuredImage: URL of the featured image (if any).

The webhook and other social media accounts will appear in the list of accounts. You can now use it in your posting schedule.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.