Deploy Data Tables

post

/rest/v16/datatables/actions/deploy

This endpoint is used to deploy the specified data tables.

Request

Supported Media Types
Body ()
Root Schema : dataTable-deployRequest
Type: object
Show Source
Nested Schema : Table Names List
Type: array
Title: Table Names List
Table name list of Datatables to be deployed.
Show Source
Back to Top

Response

Supported Media Types

202 Response

Deploy task details
Body ()
Root Schema : Task details
Type: object
Title: Task details
Task details
Show Source

Default Response

OK
Back to Top

Examples

The following example shows how to deploy data tables 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/deploy

Request Body Sample

{
  "selections": ["Racks", "Rack_Components"]
}

Response Body Sample

{
  "taskIds": [{
      "id": 41366783,
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/tasks/41366783"
        }
      ],
    }, {
      "id": 41366784,
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/tasks/41366784"
        }
      ],
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/datatables/actions/deploy"
    }
  ]
}
Back to Top