Get the top flows by click count

get

/popflows

This method gets the top flows by the number of clicks in the flow.

Request

Query Parameters
  • Specifies the historical time, in days, which the returned data represents.
    Default Value: 7D
    Allowed Values: [ "7D", "30D", "60D", "90D" ]
  • Specifies the unique manager id, to filter the returned data. To be used with team scope.
  • Specifies the unique region code, to filter the returned data. To be used with team scope.
  • Specifies the unique role id, to filter the returned data. To be used with team scope.
  • Specifies the scope of the returned data. Team returns team data. Org returns organization data.
    Default Value: all
    Allowed Values: [ "all", "team" ]
  • Specifies the unique user id, to filter the returned data. To be used with team scope.

There's no request body for this operation.

Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : popularflows
Type: object
Show Source
Nested Schema : users.
Type: array
Show Source
Nested Schema : flownamesusers
Type: object
Show Source

401 Response

Authentication Required

403 Response

Access Forbidden
Back to Top

Examples

The following example shows how to get the top flows by click count by submitting a get request on the REST resource using cURL.

cURL Command

curl -u <username:password> \ -X https://servername.fa.us2.oraclecloud.com/crmRestApi/clickhistory/resources/popflows

Example of Response Body

The following shows an example of the response body in JSON format.

{
    "items": [
        {
            "id": 0,
            "series": "All",
            "name": "Workspace",
            "clicks": 18,
            "averageResponseTime": 41,
            "Users": []
        },
        {
            "id": 1,
            "series": "All",
            "name": "Credits and Earnings",
            "clicks": 6,
            "averageResponseTime": 0,
            "Users": []
        },
        {
            "id": 2,
            "series": "All",
            "name": "Access Groups",
            "clicks": 3,
            "averageResponseTime": 62,
            "Users": []
        },
        {
            "id": 3,
            "series": "All",
            "name": "Contextual Help",
            "clicks": 1,
            "averageResponseTime": 0,
            "Users": []
        }
    ]
}
Back to Top