Get Data Table Row

get

/rest/v16/adminCustom{tableName}/{rowId}

This endpoint returns the specified data table row.

Request

Path Parameters
Back to Top

Response

Supported Media Types

404 Response

Requested resource(s) not found

500 Response

Unexpected error

Default Response

Body ()
Root Schema : rowResponse
Type: object
Show Source
Nested Schema : state
Type: object
Title: state
row state
Show Source
Nested Schema : errors
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Examples

The following examples show how to retrieve the specified data table row 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/adminCustomStatus/36735109

Response Body Sample

{
  "id": 36735109,
  "StatusID": 3,
  "StatusLabel": "INVOICED",
  "StatusOSC_t": "ZCA_IN_PROGRESS",
  "StatusOSC_l": "WON",
  "HistoricalStatus": "ZCA_WIN",
  "DMStatus": "WON",
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/adminCustomStatus"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/adminCustomStatus/36735109"
    }
  ]
}
Back to Top