Suggested Flags

Overview

Reply Pro sends suggested flags for inappropriate reviews. Users can take two actions:

  • Accept: Reply Pro will flag the review.
  • Deny: No action will be taken.
1695

๐Ÿ“˜

Can Still Respond

Currently, Reply Pro does not send a suggested response and a suggested flag for the same review. Nevertheless, a user can still write their own response at anytime.

Setup

Suggested flagging requires each business to be connected to their appropriate sources and subscribed to the suggestions service. If these two requirements are not met, there will be no suggestion to GET.

Using GET

https://ad1.replypro.io/api/public/accounts/<account_id>/companies/<company_id>/businesses/<business_id>/suggested_actions
https://ad1.replypro.io/api/public/accounts/<account_id>/companies/<company_id>/businesses/<business_id>/suggested_actions?action_type=F

Example of returned data:

{
  "results": [
    {
      "review": 12356,
      "id": 102,
      "action_type": "F",
      "original_content": ""
    },
    {
      "review": 12579,
      "id": 103,
      "action_type": "F",
      "original_content": ""
    }
  ] 
}

Using PUT

{
  "status": "A"
}
{
  "status": "D"
}

Example of returned data for accepts, edits, and denies:

{
  "message": "Review was successfully flagged."
}
{
  "message": "Suggestion denied successfully."
}