Get Data Table Access Rights

get

/rest/v16/companies/{companyLoginName}/groups/{groupVarName}/segments/_dataTables/folders/{folderVarName}/accessRights

This endpoint retrieves the access rights of data tables within a data table folder.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Access rights.
Body ()
Root Schema : Data Tables Access Rights
Type: object
Title: Data Tables Access Rights
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Data Table Access Rights
Type: object
Title: Data Table Access Rights
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Table Access Rights
Type: object
Title: Table Access Rights
Table access right details.
Show Source
Back to Top

Examples

The following example retrieves the access rights of data tables within a data table folder by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/companies/visionServices/groups/midwestTestGroup/segments/
_dataTables/folders/_default/accessRights

Response Body Sample

{
  "folderVarName": "_default",
  "items": [{
      "accessType": "READ",
      "name": "DataTable1"
    }, {
      "accessType": "FULL",
      "name": "dn_sample_wtpSegmnts"
    }, {
      "accessType": "EDIT",
      "name": "LiveTable"
    }, {
      "accessType": "NONE",
      "name": "Status"
    }, {
      "accessType": "READ",
      "name": "table_100columns"
    }
  ]
}
Back to Top