Parameter | Description |
---|---|
DataSet ID | The ID of the DataSet. |
Filters | An array which consists of attributes that the policy will use to filter data by. For example: [ { "column": "Attending", "values": [ "TRUE" ], "operator": "EQUALS" } ] |
Name | Name of the policy to be created. |
Parameter | Description |
---|---|
Groups | A comma-separated list of group IDs the policy applies to. |
Type | The type of the policy. |
Users | A comma-separated list of user IDs the policy applies to. |
{
"id": 8,
"type": "user",
"name": "Only Show Attendees",
"filters": [
{
"column": "Attending",
"values": [
"TRUE"
],
"operator": "EQUALS",
"not": false
}
],
"users": [
27
],
"groups": []
}
Was this page helpful?