List Timer Start Events

get

/process/api/v1/instances/startTimer

Get the list of timer start events.

Request

Query Parameters
Header Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : PauseResumeRequestList
Type: object
Show Source
Match All
Show Source
Nested Schema : activites
Type: array
Show Source
Nested Schema : CommonModel
Type: object
Show Source
Nested Schema : PauseResumeObject
Type: object
Show Source

401 Response

Unauthorized

404 Response

Task not found for given ID

429 Response

Too Many Requests

500 Response

Internal Server Error

503 Response

Too Many Exceptions or Too Slow Requests
Back to Top

Examples

Example: Get the list of timer start events

The following example shows how to get the list of timer start events involved in a process instance by submitting a GET request on the REST resource using cURL. For more information about cURL, see cURL Access. For more information about endpoint URL structure, see Send Requests.

Retrieve the list of timer start events from a list of applications that contain the word sales.

curl --location 'http://<OIC URL>/process/api/v1/instances/startTimer' \
--header 'x-tenant-id: abcd' \
--header 'Authorization: Basic c3sdkfF5DGuy1hjGHJ2sfnHJndjfhb21lMQ=='

Example: Format of 200 Operation Successful response

{
  "links": [
    {
      "href": "string",
      "hreflang": "string",
      "length": 0,
      "rel": "string",
      "title": "string",
      "type": "string",
      "mediaType": "string",
      "message": "string",
      "code": 600
    }
  ],
  "activites": [
    {
      "processName": "string",
      "applicationName": "string",
      "lastExecutedTime": "string",
      "state": "string",
      "processDefinitionId": "string"
    }
  ]
}
Back to Top