Get Groups

get

/serviceapi/entityModel/uds/groups

Retrieves tag-based group definitions.

If no Group name is specified all group definitions are returned.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : ItemListUdsGroup
Type: object
Show Source
Nested Schema : items
Type: array
The items
Show Source
Nested Schema : UdsGroup
Type: object

Describes a tag based group.

Show Source
Back to Top

Examples

Get the group definition for group MyMarketingEntities

curl -u ${OMC_USERNAME}:${PASSWORD} -X GET "https://serverurl/serviceapi/entityModel/uds/groups?groupName=MyMarketingEntities"

This will return the Group definition:

{
  "count": 1,
  "items":[
    {
      "groupName": "MyMarketingEntities",
      "groupDisplayName": "My Marketing Entities",
      "tagCriteria": "org=marketing"
    }
  ]
}
Back to Top