Create Application group


                https://api.ocamba.com/v1/hood/application-groups
            

Creates a new Application group


Name
Description
colorstring
Group color.


Example: #6d9382

descriptionstring
The more detailed description of the Group.


Example: This is my first group.

itemsarray
Array of applications, maximum number of items is limited by your plan.


Example: {"google.com", "www.youtube.com"}

namestringrequired
Group name.


Example: example_group_name
200 Arrow
{
    "name": "second",
    "color": "#57f8c8",
    "description": "My second group",
    "items": ["google.com", "www.youtube.com"]
}
201 Arrow
{
  "id":"1025",
  "company_id":"6197120",
  "name":"second",
  "color":"#57f8c8",
  "size":2,
  "items":[
      "google.com",
      "www.youtube.com"
  ],
  "description":"My second group"
}