List Colors

Returns a list of available Pantone colors that can be used when editing logo colors. These IDs correspond to the ID used in color change requests.

GET /api/options/colors

Returns #

Returns an object containing a list of color objects.

{
  "colors": [
    {
      "ID": "HVID",
      "Name": "White",
      "Red": 255,
      "Green": 255,
      "Blue": 255
    },
    {
      "ID": "SORT",
      "Name": "Black",
      "Red": 0,
      "Green": 0,
      "Blue": 0
    },
    {
      "ID": "200",
      "Name": "PMS 200 C",
      "Red": 201,
      "Green": 43,
      "Blue": 27
    }
    ...
  ]
}