Api Home > Enum > GetMappedSupportGroupsList

GET api/V3/Enum/GetMappedSupportGroupsList?id={id} Retrieves a list of enumerations/support groups that are mapped

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The guid of the enumeration id.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EnumNodeTreeModel
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Text

string

None.

Name

string

None.

HasChildren

boolean

None.

Ordinal

decimal number

None.

EnumNodes

Collection of EnumNode

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "b17f8f4e-adfe-4478-a3a3-6b5f7a28da36",
    "Text": "sample string 2",
    "Name": "sample string 2",
    "HasChildren": true,
    "Ordinal": 1.1,
    "EnumNodes": [
      {
        "$id": "1",
        "Id": "4be03eb7-be72-4b92-ba76-eb19f48fcc6e",
        "Text": "sample string 2",
        "Name": "sample string 2"
      },
      {
        "$ref": "1"
      }
    ]
  },
  {
    "Id": "b17f8f4e-adfe-4478-a3a3-6b5f7a28da36",
    "Text": "sample string 2",
    "Name": "sample string 2",
    "HasChildren": true,
    "Ordinal": 1.1,
    "EnumNodes": [
      {
        "$ref": "1"
      },
      {
        "$ref": "1"
      }
    ]
  }
]

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.