List User Task History for Process Instance

get

/process/api/v1/audit/instances/{instanceId}/tasks/{taskId}

Retrieves the history for a particular user task in a process instance.

Request

Path 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 : AuditTaskDetail
Match All
Show Source
Nested Schema : CommonModel
Type: object
Show Source
Nested Schema : AuditTaskWithoutCM
Type: object
Show Source
Nested Schema : ListPagination
Type: object
A common structure for helping a client with pagination
Show Source
  • The count of elements that are returned in the current this will be equal to or less than the "limit" parameter
  • The maximum number of elements to be returned. This will correspond to the "limit" query parameter
  • The index number of the first element for the list. This will correspond to the "offset" query parameter value
  • The total number of elements in the list for the applied filters - not including the "limit" parameter
Nested Schema : AuditTaskDetail-allOf[3]
Type: object
Show Source
Nested Schema : AuditUser
Match All
Show Source
Nested Schema : candidateGroups
Type: array
Show Source
Nested Schema : candidateUsers
Type: array
Show Source
Nested Schema : UserOrAppClient
Match All
Show Source
Nested Schema : AuditTaskEvent
Type: object
Show Source
Nested Schema : Identity
Match All
Show Source
Nested Schema : IdentityCommon
Type: object
Show Source
Nested Schema : Identity-allOf[1]
Type: object
Show Source
Nested Schema : AuditUser-allOf[1]
Type: object
Nested Schema : AuditGroup
Match All
Show Source
Nested Schema : AuditGroup-allOf[1]
Type: object
Nested Schema : Discriminator: type
Type: object
Show Source
Nested Schema : candidateGroups
Type: array
Show Source
Nested Schema : candidateUsers
Type: array
Show Source
Nested Schema : properties
Type: array
Show Source
Nested Schema : AuditEventProperty
Type: object
Show Source
Nested Schema : value
Type: object
The value of the property
Show Source
Nested Schema : AuditTaskActions
Type: object
Show Source
Nested Schema : ChildTasks
Type: object
Show Source
Nested Schema : historyDetail
Type: array
Show Source
Nested Schema : custom
Type: array
Show Source
Nested Schema : system
Type: array
Show Source
Nested Schema : AuditTaskAction
Type: object
Show Source
Nested Schema : childTasksDetails
Type: array
Show Source
Nested Schema : ChildTasksDetails
Type: object
Show Source
Examples

201 Response

There are no activities for the process instance id

401 Response

Unauthorized

404 Response

The process instance does not exist

429 Response

Too Many Requests

500 Response

internal server error

503 Response

Too Many Exceptions or Too Slow Requests
Back to Top

Examples

Example: Retrieve the history of user task 6789vghjk in a process instance 3456dasds4567d678

The following example shows how to retrieve the history of user task 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.

In addition to task ID and process nstance ID, you have to provide the accepted language and the OCI original URL details.

curl -X 'GET' \
      'https://<OIC URL>/process/api/v1/audit/instances/3456dasds4567d678/tasks/6789vghjk' \
      -H 'accept: application/json' \   -H 'Accept-Language: English' \   -H 'oci-original-url:
      www.oracle.com'
Back to Top