Get an Intelligence Model Filter

get

/rest/v19/intelligenceSetup/models/{modelId}/filters/{filterId}

Use this endpoint to retrieve the specified intelligence model filter.

Request

Path Parameters
Query Parameters
  • This parameter filters the resource attributes. Only the specified attributes are returned, which means that if no attributes are specified, all attributes are returned.
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : IntelligenceFilter
Type: object
Show Source
Nested Schema : Created By
Title: Created By
Read Only: true
The details of the user who created the record.
Match All
The details of the user who created the record.
Show Source
Nested Schema : Last Modified By
Title: Last Modified By
Read Only: true
The details of the user who modified the record.
Match All
The details of the user who modified the record.
Show Source
Nested Schema : UserDetails
Type: object
Show Source
Back to Top

Examples

The following examples show how to retrieve the specified intelligence model filter by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

The 'limit' query specification is used in the following example to limit the results to three models per page.

curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v19/intelligenceSetup/models/334523/filters/3023603684

Response Body Sample

{
  "createdBy": {
    "firstName": "Alex",
    "lastName": "Smith",
    "emailId": "alex.smith@example.com"
  },
  "lastModifiedBy": {
    "firstName": "Alex",
    "lastName": "Smith",
    "emailId": "alex.smith@example.com"
  },
  "dateModified": "2025-02-27T23:49:41Z",
  "dateAdded": "2025-02-27T23:49:41Z",
  "id": 3023603684,
  "attributeId": 20013292,
  "attributeLabel": "Status",
  "operator": "_eq",
  "attributeValue": "won",
  "attributeValueLabel": "Won"
}
Back to Top