Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt

Use this file to discover all available pages before exploring further.

Create a PDP policy for user and or group access to data within a DataSet. Users and groups must exist before creating PDP policy.

Basic Parameters

ParameterDescription
DataSet IDThe ID of the DataSet.
FiltersAn array which consists of attributes that the policy will use to filter data by.

For example:
[
{
“column”: “Attending”,
“values”: [
“TRUE”
],
“operator”: “EQUALS”
}
]
NameName of the policy to be created.

Advanced Parameters

ParameterDescription
GroupsA comma-separated list of group IDs the policy applies to.
TypeThe type of the policy.
UsersA comma-separated list of user IDs the policy applies to.

Example Output

{
	"id": 8,
	"type": "user",
	"name": "Only Show Attendees",
	"filters": [
		{
			"column": "Attending",
			"values": [
				"TRUE"
			],
			"operator": "EQUALS",
			"not": false
		}
	],
	"users": [
		27
	],
	"groups": []
}

Workflow Library Example

Create Pdp Policy with Domo and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop