GET /brands

Headers

  • X-Application-Name string

Query parameters

  • client_id string Required

    Client identifier

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes array[object]
      • brand_id string Required

        Brand ID

      • title string Required

        brand ID

    • result object
      Hide result attributes Show result attributes object
      • code integer(int)
      • status string
GET /brands
curl \
 -X GET https://mpapi.proxy.omnicado.com/v1/brands?client_id=yourClientId&client_id=api_token_value \
 -H "X-Application-Name: myApplicationName"
Response examples (200)
{
  "data": [
    {
      "brand_id": "RELAXDREAM-MALL",
      "title": "Relaxdream Mall"
    }
  ],
  "result": {
    "code": 200,
    "status": "OK"
  }
}
Response examples (200)
{
  "data": [
    {
      "title": "Relaxdream Mall",
      "brand_id": "RELAXDREAM-MALL"
    }
  ],
  "result": {
    "code": 200,
    "status": "OK"
  }
}