Update Data Tables Access Rights for a Group

post

/rest/v16/companies/{companyLoginName}/groups/{groupVarName}/segments/_dataTables/actions/updateAccessRights

This endpoint updates data tables access rights for a group.

Request

Supported Media Types
Path Parameters
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

Response

Default Response

No Content.
Back to Top

Examples

The following example updates the data table access rights for a group by submitting a POST 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

Request Body Sample


  "items": [{
      "folderVarName": "_default",
      "items": [{
          "name": "DataTable1",
          "accessType": "READ"
        }, {
          "name": "dn_sample_wtpSegmnts",
          "accessType": "FULL"
        }, {
          "name": "LiveTable",
          "accessType": "EDIT"
        }, {
          "name": "Status",
          "accessType": "NONE"
        }, {
          "name": "table_100columns",
          "accessType": "READ"
        }
      ]
    }, {
      "folderVarName": "aBOTables",
      "items": [{
          "name": "Oracle_aboPart2Model",
          "accessType": "FULL"
        }
      ]
    }, {
      "folderVarName": "bMQL",
      "items": [{
          "name": "BMQL_TestCases",
          "accessType": "FULL"
        }, {
          "name": "BMQLTest_Indexed",
          "accessType": "READ"
        }, {
          "name": "BMQLTest_NotIndexed",
          "accessType": "EDIT"
        }, {
          "name": "BMQLTest_Small",
          "accessType": "NONE"
        }
      ]
    }
  ]
}
Back to Top