Push Method

Using PUT

Use this URL to send the information of customers that you want to be asked for a review:

https://ad1.replypro.io/api/ask_for_review

In the body of the request send us the information on one or more customers:

[
  {
    "email_address": "[email protected]", 
    "first_name": "Ben",
    "user_id": "3iawsOl7R720wn5J7WZWDiY8SeHqExHd2orkiFhzeaI=",
    "store_id": "23",
    "additional_data": {"date":"2021-03-10T23:47:58.247369+00:00", "purchase_price": 3.05 }
	},
  {
    "phone": "+12085554321", 
    "first_name": "Greg",
    "user_id": "531",
    "store_id": "21",
  }
]

We will return a 200 response code if we receive the information successfully.


What’s Next