List of Executions
Use this API to list CEMLI patch executions.
API
/cemli/v1/customers/{supportIdentifier}/{serviceType}/products/patch/instances/executions
Scope and AuthZ
- You must have
mcs:oci:api:Userscope to access this API. - You can list executions that belong to your customer.
- You can use CEMLI execution 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 allows you to list CEMLI patch executions.
- Response field that requires an explanation:
-
idis the unique identifier for the ticket.
-
Verb
GET
Parameters
| Name | Type | Description | Mandatory |
|---|---|---|---|
supportIdentifier
|
Path parameter | Customer Support Identifier (CSI) | Yes |
serviceType
|
Path parameter | Service type (For Example, EBSO, EBSZ, or EBSI) | Yes |
target
|
Query parameter | Instance name or target name | No |
patchNumber
|
Query parameter | Patch number | No |
status
|
Query parameter | Status | No |
subStatus
|
Query parameter | Sub status | No |
customerStatus
|
Query parameter | Customer status | No |
Sample response (success)
[
{
"createdBy": "<email ID>",
"createdOn": "2021-12-21T14:34:39Z",
"id": "3-CDNJILA",
"patchNumbers": [
"10000001923"
],
"scheduledBy": "<user's email ID>",
"scheduledEnd": "2021-12-21T17:04:43Z",
"scheduledStart": "2021-12-21T15:04:43Z",
"target": "TCMATI",
"ticketingDetails": {
"customerNote": "Action Plan",
"customerStatus": "Review Update",
"primaryContact": "<Primary contact's email ID>",
"rfcNumber": "3-CDNJILA",
"rfcSubType": "CEMLI_PATCH",
"rfcType": "OCIEBS_CEMLI_PATCH",
"status": "Open",
"subStatus": "Ready For Execution"
}
},
{
"createdBy": "<user's email ID>",
"createdOn": "2021-12-21T14:28:30Z",
"id": "3-CDN0AVI",
"patchNumbers": [
"10000001923"
],
"target": "TCMATI",
"ticketingDetails": {
"customerNote": "Action Plan",
"customerStatus": "Review Update",
"primaryContact": "<Primary contact's email ID>",
"rfcNumber": "3-CDN0AVI",
"rfcSubType": "CEMLI_PATCH",
"rfcType": "OCIEBS_CEMLI_PATCH",
"status": "Open",
"subStatus": "Ready for Scheduling/Approval"
}
}
]