Retrieve Product

Use this API to get details of product for a service.

API

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

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can retrieve product only for your customer support identifier and service type.
  • You can use CEMLI product API only if your customer has opted-in for CEMLI 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 fetches details of a product for a service identified by combination of serviceType and Customer Support Identifier (CSI).
  • 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
productId Path parameter ID of the product to be fetched. Yes

Sample response

{
  "productId": 2540,
  "productName": "xbol",
  "description": "xbol custom top",
  "applicationId": 27000,
  "dbSchema": "bolinf",
  "active": true,
  "createdBy": "<user's email ID>",
  "createdDate": "2020-08-26T10:53:51-07:00"
}