Get Data Table Data
get
                    /rest/v19/adminCustom{tableName}
This endpoint returns all rows for the specified data table.
                
                Request
Path Parameters
                
                
                
                Query Parameters
                - 
                        q: string
                        
                        Query specifications can be used to search for specific data within the named data table.
Response
Supported Media Types
                - application/json
404 Response
Requested resource(s) not found
                
                
                500 Response
Unexpected error
                
                
                Default Response
Table row collection
                
                
                    Root Schema : rowCollection
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            count: 
            integer
            Title:CountSpecifies that the total count of records should be included in the response when doing pagination.
- 
            hasMore: 
            boolean
            Title:Has MoreReturns true if more resources are available on the server than the subset returned in current page.
- 
            items: 
            array  items
            
            
- 
            limit: 
            integer
            Title:LimitThe requested page size, which limits the number of elements the collection should max return.
- 
            offset: 
            integer
            Title:OffsetThe offset of the page. By default, offset is 0, which means first page will be returned.
- 
            totalResults: 
            integer
            Title:Total ResultsCapture the total count of the resource instances, which not only includes the instances in the current range, but all instances on the server that satisfy the request.
Nested Schema : rowRequest
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            DataItems: 
            string
            Title:Data Table Row Data.This object contains labels and values for each column in the data table.
Examples
The following examples show how to retrieve all rows 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 -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/adminCustomStatus
Response Body Sample
{
 {
  "limit": 1000,
  "offset": 0,
  "count": 8,
  "hasMore": false,
  "items": [{
      "id": 36735107,
      "StatusID": 1,
      "StatusLabel": "CREATED",
      "StatusOSC_t": "ZCA_IN_PROGRESS",
      "StatusOSC_l": "OPEN",
      "HistoricalStatus": "ZCA_IN_PROGRESS",
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus/36735107"
        }
      ],
    }, {
      "id": 36735108,
      "StatusID": 2,
      "StatusLabel": "QUOTED",
      "StatusOSC_t": "ZCA_IN_PROGRESS",
      "StatusOSC_l": "OPEN",
      "HistoricalStatus": "ZCA_IN_PROGRESS",
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus/36735108"
        }
      ],
    }, {
      "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"
        }
      ],
    }, {
      "id": 36735110,
      "StatusID": 4,
      "StatusLabel": "AWAIT_BILLING",
      "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/36735110"
        }
      ],
    }, {
      "id": 36735111,
      "StatusID": 5,
      "StatusLabel": "BILLED",
      "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/36735111"
        }
      ],
    }, {
      "id": 36735112,
      "StatusID": 6,
      "StatusLabel": "ORDERED",
      "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/36735112"
        }
      ],
    }, {
      "id": 36735113,
      "StatusID": 7,
      "StatusLabel": "SCHEDULED",
      "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/36735113"
        }
      ],
    }, {
      "id": 36735114,
      "StatusID": 8,
      "StatusLabel": "PICKED",
      "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/36735114"
        }
      ]
     }
    }
  ],
  "links": [{
      "rel": "canonical",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus"
    }, {
      "rel": "next",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus?offset=1000&limit=1000&totalResults=false"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus?offset=0&limit=1000&totalResults=false"
    }
  ]
}
                  Request Data Table records matching a specific criteria
The following query returns Status table records where the StatusLabel equals CREATED or PICKED.
curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v19/adminCustomStatus?q={$or:[{StatusLabel:'CREATED'},{ StatusLabel:'PICKED'}]}
                  Response Body Sample
 {
  "limit": 1000,
  "offset": 0,
  "count": 2,
  "hasMore": false,
  "items": [{
      "id": 36735107,
      "StatusID": 1,
      "StatusLabel": "CREATED",
      "StatusOSC_t": "ZCA_IN_PROGRESS",
      "StatusOSC_l": "OPEN",
      "HistoricalStatus": "ZCA_IN_PROGRESS",
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus/36735107"
        }
      ],
    }, {
      "id": 36735114,
      "StatusID": 8,
      "StatusLabel": "PICKED",
      "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/36735114"
        }
      ],
    }
  ],
  "links": [{
      "rel": "canonical",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus"
    }, {
      "rel": "next",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus?offset=1000&limit=1000&totalResults=false&q={$or:[{StatusLabel:'CREATED'},{ StatusLabel:'PICKED'}]}"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/adminCustomStatus?offset=0&limit=1000&totalResults=false&q={$or:[{StatusLabel:'CREATED'},{ StatusLabel:'PICKED'}]}"
    }
  ]
}