APIs for sharing dataset with users

Options

I am creating a dataset and adding pdp using APIs

And now I need to share the dataset with the users programmatically

are there any APIs for sharing datasets with users?

Comments

  • GSTV
    GSTV Member
    edited January 2023
    Options

    The Dataset API allows you to update a PDP policy. Adding the user_id to the "users" arrary


    {

    "id" : 8,

    "type" : "user",

    "name" : "Not Attending",

    "users" : [27],

    "groups" : [ ]

    }

    Link to Documentation

    Link to Github