Move Data Tables

post

/rest/v16/datatables/actions/moveTables

This endpoint is used to move data tables from one folder to another folder.

Request

Supported Media Types
Body ()
Root Schema : dataTable-moveRequest
Type: object
Show Source
Nested Schema : Table Names List
Type: array
Title: Table Names List
An array of data table names to move.
Show Source
Back to Top

Response

Supported Media Types

Default Response

OK
Back to Top

Examples

The following example shows how to move data tables from one folder to another folder 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/datatables/actions/moveTables

Request Body Sample

{
    "folderVariableName": "racks",
    "selections": ["ServerComponenets", "Shipping_Options"]
}
Back to Top