Get CEMLI User Information

Use this API to get CEMLI user information.

API

/cemli/v1/users/{userEmail}

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can access only your details.
  • You can use CEMLI user 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/

Functionality

  • This API allows you to get CEMLI user information including preferences.
  • Response fields that require explanation:
    • csi sets the preferred support Identifier.
    • serviceType sets the preferred service type for the selected support identifier.
    • instance sets the preferred instance.
    • timezone sets the preferred timezone.

Verb

GET

Parameters

Name Type Description Mandatory
userEmail Path parameter User's email Yes

Sample response

{
  "active": true,
  "admin": false,
  "description": "ACE USER",
  "firstName": "<first name>",
  "lastName": "<last name>",
  "userEmail": "<user's email ID>",
  "userPreferences": {
    "csi": 15427061,
    "serviceType": "EBSI",
    "instance": "TCMA1I",
    "timezone": "Asia/Calcutta"
  }
}