Get a service request summarization

get

/api/boss/data/objects/ora/cxServiceCore/analytics/v1/serviceRequestSummarizations/{serviceRequestSummarizations_id}

Request

Path Parameters
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.

There's no request body for this operation.

Back to Top

Response

Default Response

A single item response
Body ()
Root 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 a service request summarization 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/{serviceRequestSummarizations_id}
--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.

{
    "serviceRequestsSummarizationId": "10029",
    "stripeCode": "ORA_SVC_HRHD",
    "summarizationDate": "2025-03-07T00:00:00Z",
    "serviceRequestsCreated": "404",
    "serviceRequestsCriticalCreated": "14",
    "serviceRequestsReopen": "0",
    "serviceRequestsReopenCritical": "0",
    "serviceRequestsUpdated": "404",
    "serviceRequestsResolved": "11",
    "serviceRequestsClosed": "0",
    "serviceRequestsAllOpen": "5042",
    "serviceRequestsAllOpenCritical": "224",
    "serviceRequestsAllNew": "4911",
    "serviceRequestsAllInProgress": "59",
    "serviceRequestsAllWaiting": "72",
    "serviceRequestsAllUnassigned": "4517",
    "serviceRequestsAllUnclaim": "4230",
    "serviceRequestsAllUnresolved": "5042",
    "serviceRequestsAllResolved": "88",
    "serviceRequestsAllClosed": "44",
    "$id": "10029",
    "$context": {
        "etag": "1",
        "links": {
            "$self": {
                "href": "https:servername.fa.us2.oraclecloud.com/api/boss/data/objects/ora/cxServiceCore/analytics/v1/serviceRequestSummarizations/10029"
            }
        }
    }
}
Back to Top