Create Custom Product
Use this API to create a custom product for an EBS service.
API
/cemli/v1/customers/{supportIdentifier}/services/{serviceType}/products
Scope and AuthZ
- You must have
mcs:oci:api:Approver
scope to access this API. - You can create 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 is used to create product for a service, identified using combination of Customer Support Identifier (CSI) and
serviceType
. - The
productId
of newly created product is returned in the response.
Verb
POST
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 request
{
"product": "xbol",
"description": "xbol custom top",
"applicationId": 27000,
"dbSchema": "bolinf"
}
Sample response
{
"productId": 2540
}