cURL
curl --request GET \ --url https://api.domo.com/v1/datasets/{dataset_id}/policies/{pdp_id} \ --header 'Authorization: Bearer <token>'
{ "id": 8, "type": "user", "name": "Only Show Attendees", "filters": [ { "column": "Attending", "values": [ "TRUE" ], "operator": "EQUALS", "not": false } ], "users": [ 27 ], "groups": [] }
Retrieve a policy from a DataSet within Domo. A DataSet is required for a PDP policy to exist.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Returns a subset of the DataSet object specific to the data permission policy.
Show child attributes