Retrieve Service

Use this API to fetch CEMLI service details including preferences, languages for a Customer Support Identifier (CSI), and ServiceType combination.

API

/cemli/v1/customers/{supportIdentifier}/services/{serviceType}

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can retrieve service details only for your customer support identifier and service type.
  • You can use CEMLI service API only if your customer has opted-in for CEMLI, Bounce, or Configure functionality.

Headers

  • Authorization: Bearer <Token>

    Where <Token> is the OAUTH token returned by the Authorization Server (JWT Token).

  • Identifier: <JWKS Identifier>

    Where <JWKS Identifier> is the GUID generated when JWKS URI is set by customer admin in self-service platform.

Base Path

/cemli/v1/

Dependency

Functionality

  • This API returns service details including service preferences and languages using serviceType and CSI combination.
  • Authorization header contains the JWT identity token

Verb

GET

Parameters

Name Type Description Mandatory
serviceType Path parameter Service type (For example, EBSO, EBSZ, or EBSI) Yes
supportIdentifier Path parameter Customer Support Identifier (CSI) Yes

Sample response

{
  "cemliServiceId": 864,
  "customerName": "Oracle Systems Assurance Center",
  "customerShortName": "OSAC001",
  "baseDir": "CEMPAC/repository/OSAC001",
  "orgId": 967432960,
  "CSI": 15427061,
  "serviceType": "EBSZ",
  "serviceGroup": "@Oracle Public Cloud",
  "serviceGroupCode": "@OPC",
  "active": true,
  "cemliMode": "INTERNAL",
  "preferences": {
    "appsRelease": {
      "12.2.0": "12.2.x"
    },
    "patchDriverFormat": "u",
    "autoHeader": true
  },
  "installedLanguages": {
    "base": "US",
    "nls": [
      "BG",
      "FRC",
      "ESA",
      "ZHS"
    ]
  },
  "privileges": {
    "config": true,
    "bounce": true,
    "cemli": false
  }
}