Expressions
Entity - Expressions - Provides services pertaining expressions
| Verb | Request | Notes | Permissions required | 
|---|---|---|---|
| POST | /Consumer/Expressions /GetReadable | Converts given expression tree to human readable form | None | 
| POST | /Consumer/Expressions /CheckScope | Checks if given two expressions can be merged into a single valid scope. Example, two expressions to check wrapped in a JSON object: Post model {
    "First": {
        // 1st scope expression
        "Attribute": "ostype",
        "Operator": "=",
        "Value": "Windows"
    },
    "Second": {
        // 2nd scope expression
        "Attribute": "rammb",
        "Operator": ">",
        "Value": "2048"
    }
}
More details can be found on Using scope and filter expressions page. | None |