GET /labels

Get list of all available product labels managed by Mall - new labels can be added. Each product can use these labels in the labels attribute.

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]
      • id string Required

        Label ID

      • title string Required

        Title of label

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