Get Data Table Properties

get

/rest/v16/datatables/{tableName}

This endpoint is used to retrieve properties for the specified data table. The following properties are returned: the Id, name, description, parent folder, 'Live' status, if the data table has changes that are not deployed, last deploy date, last modification date, and creation date.

Request

Path Parameters
Query Parameters
  • The expand query string parameter can be used to include expanded child collections in the results.
Back to Top

Response

Default Response

Datatable details
Body ()
Root Schema : dataTable-getResponse
Type: object
Show Source
Nested Schema : dataTableField-collection
Type: object
Show Source
Nested Schema : folder
Type: object
Show Source
Nested Schema : Columns list
Type: array
Title: Columns list
List of columns
Show Source
Nested Schema : dataTableField
Type: object
Data table column model
Show Source
Nested Schema : relationship-response
Type: object
Show Source
Nested Schema : validation-response
Type: object
Show Source
Nested Schema : referenceField-response
Type: object
Show Source
Nested Schema : referenceTable-response
Type: object
Show Source
Back to Top

Examples

The following examples show how to retrieve properties for the specified data table by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/datatables/Status

Response Body Sample

{
  "id": 36263638,
  "dateModified": "08/10/2017 11:17 AM",
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/datatables"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/datatables/Status"
    }
  ],
  "name": "Status",
  "description": "The list of all possible values for transaction and transaction line status attributes.",
  "hasUndeployedChanges": false,
  "deployedDate": "08/10/2017 11:17 AM",
  "dateCreated": "07/02/2014 10:08 AM",
  "folder": {
    "name": "[Default]",
    "variableName": "_default",
    "links": [{
        "rel": "related",
        "href": "https://sitename.oracle.com/rest/v16/dataTableFolders/_default"
      }
    ],
  },
  "isLive": false
}
Back to Top