Through this endpoint, you can retrieve your brands.

Request

Name Method Description
/v1/getbrands GET This end-point will retrieve a list of brands nested under an agency on the Online Review Manager platform.

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 optional This is the unique id of a brand in our system.
client_brand_id string optional This is the unique identification of a Brand in your system. This value can be found in the brand sign-up form.

Sample Request

GET : https://api.online-review-manager.com/v1/getbrands

Response Data

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

Sample Success Message:

{
    "status": "success",
    "message": {
        "brands": [
            {
            "brand_id": 000001,
            "brand_name": "Demo Brand One",
            "address": "3940 Laurel Canyon Blvd Suite #568",
            "city": "Studio City",
            "state": "California",
            "country": "United States",
            "zip": "91604",
            "industry": "",
            "first_name": "Demo",
            "last_name": "Demo",
            "title": "Manager",
            "email": "orm1@demo.com",
            "phone": "(888) 888-8888",
            "url": null,
            "product": "ReviewNavigator™",
            "client_brand_id": "",
            "appid": "TEST394ea4a5846dc4e1b2985e00f9f31b51576eca11943feb4490bd588a7dd"
            }
        ]
    }
}