Get Data Table Row
get
                    /rest/v19/adminCustom{tableName}/{rowId}
This endpoint returns the specified data table row.
                
                Request
Path Parameters
                
                
                
                
                
                
                
                
                
                Back to Top
                Response
Supported Media Types
                - application/json
404 Response
Requested resource(s) not found
                
                
                500 Response
Unexpected error
                
                
                Default Response
Root Schema : rowResponse
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            _state: 
            object  state
            
            Title:staterow state
- 
            DataItems: 
            string
            Title:Data Table Row Data.This object contains labels and values for each column in the data table.
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            field: 
            string
            Title:fielderror field
- 
            title: 
            string
            Title:titleerror title
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 -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/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/v19/adminCustomStatus"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus/36735109"
    }
  ]
}