GET api/Groups/{id}/criteria

Get the dynamic criteria for a Group by ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CriteriaObject
NameDescriptionTypeAdditional information
LeftParentheses

The number of Parentheses on the left. Max value = 5

integer

None.

LogicalOperator

LogicalOperator

None.

RightParentheses

The number of Parentheses on the right. Max value = 5

integer

None.

FieldTableName

string

None.

FieldColumnName

string

None.

Operator

OperatorEnum

None.

Value

Object

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LeftParentheses": 1,
    "RightParentheses": 2,
    "FieldTableName": "sample string 3",
    "FieldColumnName": "sample string 4",
    "Value": {}
  },
  {
    "LeftParentheses": 1,
    "RightParentheses": 2,
    "FieldTableName": "sample string 3",
    "FieldColumnName": "sample string 4",
    "Value": {}
  }
]