List of Executions

Use this API to list bounce executions.

API

/selfservice/v1/customers/{supportIdentifier}/{serviceType}/products/bounce/instances/executions

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can get a list of bounce execution details only for your customer.
  • You can use Bounce API only if customer has opted-in for bounce 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

/selfservice/v1/

Dependency

Functionality

This API allows you to list bounce executions.

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 Target name or instance name No
status Query parameter No
subStatus Query parameter No
customerStatus Query parameter No

Sample response (success)

[
  {
    "createdBy": "<email ID>",
    "createdOn": "2022-01-13T06:32:56Z",
    "id": "3-CDQF5Z0",
    "scheduledBy": "<email ID>",
    "scheduledEnd": "2022-01-14T05:00:00Z",
    "scheduledStart": "2022-01-14T03:00:00Z",
     "target": "OMCEBSOR3",
    "ticketingDetails": {
      "customerNote": "Action Plan",
      "customerStatus": "Review Update",
      "primaryContact": "<email ID>",
      "rfcNumber": "3-CDQF5Z0",
      "rfcSubType": "SelfService_Bounce",
      "rfcType": "OCIEBS_Prod_SelfService",
      "status": "Open",
      "subStatus": "Ready For Execution"
    }
  },
  {
    "createdBy": "<email ID>",
    "createdOn": "2022-01-12T08:40:03Z",
    "id": "3-CDQEVUP",
    "target": "TCMATI",
    "ticketingDetails": {
      "customerNote": "Action Plan",
      "customerStatus": "Acknowledged",
      "primaryContact": "<email ID>",
      "rfcNumber": "3-CDQEVUP",
      "rfcSubType": "ACE_DATAFIX",
      "rfcType": "OCIEBS_ACE_DATAFIX",
      "status": "Open",
      "subStatus": "Ready for Scheduling/Approval"
    }
  },
  {
    "createdBy": "<email ID>",
    "createdOn": "2021-12-21T14:34:39Z",
    "id": "3-CDNJILA",
    "scheduledBy": "<email ID>",
    "scheduledEnd": "2021-12-21T17:04:43Z",
    "scheduledStart": "2021-12-21T15:04:43Z",
    "target": "TCMATI",
    "ticketingDetails": {
      "customerNote": "Action Plan",
      "customerStatus": "Review Update",
      "primaryContact": "<email ID>",
      "rfcNumber": "3-CDNJILA",
      "rfcSubType": "CEMLI_PATCH",
      "rfcType": "OCIEBS_CEMLI_PATCH",
      "status": "Open",
      "subStatus": "Ready For Execution"
    }
  }
]