Delete Data Table Rows
post
                    /rest/v19/adminCustom{tableName}/actions/deleteRows
This endpoint is used to delete multiple data table columns.
                
                Request
Supported Media Types
                - application/json
Path Parameters
                
                
                
                
                
                
                Root Schema : selections
    
      
      Type: 
    
    
    
    arrayTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        selections- 
            Array of: 
                integer
            
            Title:Row IdAn array of data table rows ids to delete.
Response
Supported Media Types
                - application/json
400 Response
Bad request. Invalid Payload
                
                
                404 Response
Requested resource(s) not found
                
                
                500 Response
Unexpected error
                
                
                Default Response
no content
                
                
                Examples
The following example shows how to delete multiple data table rows by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X POST -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/adminCustomStatus/actions/deleteRows
Request Body Sample
{
   "selections": [123456, 789012, 345678]
}