Get all service request summarizations

get

/api/boss/data/objects/ora/cxServiceCore/analytics/v1/serviceRequestSummarizations

Request

Query Parameters
  • The effective date value in ISO 8601 date format 'YYYY-MM-DD'. This date is required by business logic to search for effective-dated business objects.
  • Restricts the resource fields. Only the specified fields and mandatory system fields are returned.
  • The resource collection will be queried using the specified filter condition.
  • Specifies whether the server should estimate the total number of records for a given query and include the count in the response.
  • Restricts the number of resource items returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resource items.
    Default Value: 25
  • Defines the starting position of the resource collection. If offset exceeds the resource count then no resource items are returned.
    Default Value: 0
  • Orders a resource collection based on the specified fields. The parameter value is a comma-separated string of field names, each optionally followed by a colon and "asc" (default) or "desc".

There's no request body for this operation.

Back to Top

Response

Default Response

An array of items response
Body ()
Root Schema : serviceRequestSummarizations_view-default
Match All
Show Source
Nested Schema : __collection_context
Type: object
Show Source
Nested Schema : serviceRequestSummarizations_view-default-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : serviceRequestSummarizations_item-response
Match All
Show Source
Nested Schema : oraCxServiceCoreAnalytics.ServiceRequestSummarization_item
Match All
Show Source
Nested Schema : oraCxServiceCoreAnalytics.ServiceRequestSummarization_item-fields
Type: object
Show Source
Nested Schema : Service Request Summarization
Type: object
Title: Service Request Summarization
Nested Schema : __busObj_context
Type: object
Show Source
Nested Schema : stripeCode
Match All
The product area associated with the summary.
Show Source
  • Title: Stripe Code
    Read Only: true
    The product area associated with the summary.
  • Allowed Values: [ "ORA_SVC_CRM", "ORA_SVC_HRHD", "ORA_SVC_ISR" ]
Nested Schema : $context
Type: object
Show Source
Back to Top

Examples

The following example shows how to get all service request summarizations by submitting a GET request on the REST resource.

cURL Command

curl -X GET --location 'https://servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServiceCore/analytics/v1/serviceRequestSummarizations
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'

Example of Response Body

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

{
    "items": [
        {
            "serviceRequestsSummarizationId": "10028",
            "stripeCode": "ORA_SVC_CRM",
            "summarizationDate": "2025-03-07T00:00:00Z",
            "serviceRequestsCreated": "1",
            "serviceRequestsCriticalCreated": "0",
            "serviceRequestsReopen": "0",
            "serviceRequestsReopenCritical": "0",
            "serviceRequestsUpdated": "1",
            "serviceRequestsResolved": "0",
            "serviceRequestsClosed": "0",
            "serviceRequestsAllOpen": "590",
            "serviceRequestsAllOpenCritical": "145",
            "serviceRequestsAllNew": "509",
            "serviceRequestsAllInProgress": "32",
            "serviceRequestsAllWaiting": "49",
            "serviceRequestsAllUnassigned": "460",
            "serviceRequestsAllUnclaim": "348",
            "serviceRequestsAllUnresolved": "608",
            "serviceRequestsAllResolved": "210",
            "serviceRequestsAllClosed": "33",
            "$id": "10028",
            "$context": {
                "etag": "1",
                "links": {
                    "$self": {
                        "href": "https:servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServiceCore/analytics/v1/serviceRequestSummarizations/10028"
                    }
                }
            }
        },...
    ],
    "hasMore": true
}
Back to Top