Get All InApp business Metrics

get

/rest/v19/metrics

This operation returns all the InApp business metrics to monitor daily.

Request

Query Parameters
  • Exclude links.
  • Restrict which fields shall be returned. The value is a comma delimited string and each token is a field name.
  • The requested page size, which limits the number of elements the collection should max return.
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • Allows to specify one or more filtering criteria. By default, no filtering is applied.
  • Specifies that the total count of records should be included in the response when doing pagination.
Back to Top

Response

Supported Media Types

Default Response

InApp business metrics daily data.
Body ()
Root Schema : Daily Metrics
Type: object
Title: Daily Metrics
Metrics collection reports.
Show Source
Nested Schema : This is list of all metrics contents
Type: array
Title: This is list of all metrics contents
Metrics reports.
Show Source
Nested Schema : metricsContent
Type: object
Show Source
Back to Top

Examples

The following example returns the daily business metrics 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" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/metrics

Response Body Sample

[
  {
    "name": "QUOTES",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "INTERNALQUOTES",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "PARTNERQUOTES",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "INTERNALUSERS",
    "value": "156",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "REMAININGINTERNALLICENSES",
    "value": "356",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "INTERNALUSERSLOGGEDIN",
    "value": "1",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "PERCENTINTERNALUSERSLOGGEDIN",
    "value": "0.64102566",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "PARTNERUSERS",
    "value": "141",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "PARTNERUSERSLOGGEDIN",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "PERCENTPARTNERUSERSLOGGEDIN",
    "value": "0.0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "ECOMMERCEINTERACTIONS",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "APILICENSES",
    "value": "0",
    "startTime": "2024-05-06T00:00:00+0000",
    "endTime": "2024-05-06T23:59:59+0000"
  }, {
    "name": "DISKSPACE",
    "value": "0.015850715",
    "startTime": "2024-05-07T07:37:06+0000",
    "endTime": "2024-05-07T07:37:06+0000"
  }
]
Back to Top