Through this endpoint, you can edit or add login credentials for review sites associated with a location. Providing login credentials for a review site will allow Online Review Manager to log in to the live review site on behalf of the location owner and post responses to reviews.

Request

Name Method Description
/v1/postreviewsites POST Through this endpoint, you can edit or add login information for review sites associated with a location.

Request Parameters

Name Data Type Required/Optional Description
api_key string required This is the unique key given to your agency. This key can be found in your agency settings under the White Label API information tile.
brand_id integer required/optional This is the unique identifier of a Brand in our system. It was automatically created when you created the Brand. The brand id can be found in your account settings under the account information tile.
client_brand_id string required/optional This is the unique identifier of a Brand in your system. This value can be found in the brand sign-up form.
location_id integer required/optional This is the unique identifier of a Location in our system. It was automatically created when you created the Location. The location id can be found in the brand settings under the location sign-up form.
client_location_id integer required/optional This is the unique identifier of the Location in your system. This value can be found in the location sign-up form.
reviewsite_id integer required This is the unique identifier of the review Site in our system. You can find this reviewsite_id from the "Get Review Sites" endpoint.
review_site_url text optional This is the review site URL for this location.
landing_page_url text optional This is the landing page URL for this location.
username string optional This is the username for your review site login page.
password string optional This is the password for your review site login page.

Sample Request

POST : https://api.online-review-manager.com/v1/postreviewsites

Response Data

You will recieve a success or error message. See sample success message below:

Sample Success Message:

{
    "status": "success",
    "message": "Review site has been updated successfully.",
    "data": {
        "brand_name": "BrandName",
        "brand_id": 5001,
        "location_name": "LocationName",
        "location_id": "ORM1234567890",
        "industry_name": "Home Services",
        "industry_id": 1,
        "industry_review_sites": [
            {
                "reviewsite_id": 000001,
                "review_site_id": 3,
                "review_site": "Facebook",
                "send_to_api": "Y",
                "review_site_url": "https://www.facebook.com/",
                "landing_page_url": "https://www.facebook.com/",
                "username": "",
                "password": "",
                "connected": "N"
            }
        ]
    }
}