27.1.2 Response JSON Parameters
This section provides the list of parameters in the JSON Response.
Table 27-3 POST JSON Response
| Name | Type | Description | 
|---|---|---|
| process_instance_id | STRING | The unique value that identifies the process instance. | 
| object_id | STRING | The unique value that identifies the PMF execution. | 
| activity_id | STRING | The unique ID of the activity. | 
| event_params | STRING | Parameters of the event. | 
| event_message | STRING | Message for the event. | 
| activity_event | STRING | The details of the event. | 
| activity_event_list | STRING | The list of events for the given object ID and activity ID. | 
| time_stamp | STRING | The execution time of the event. | 
| event_name | STRING | The unique name of the event. | 
| value | STRING | The value provided to the event. | 
Table 27-4 Possible Status Codes
| Status Code | Description | 
|---|---|
| 400 | Incorrect request body provided. | 
| 404 | Could not find any such Activity. | 
| 500 | Error while getting activity events. | 
Response JSON Sample
{
    "activityEventList": [
        {
            "objectId": "1716987996892",
            "processInstanceId": "1715858557717_0daade1f-1a8a-4953-8767-9829efecaa63",
            "activityEvents": {
                "activityId": "JOB_171585855928213",
                "timestamp": "05-29-2024 01:07:01 PM",
                "eventMessage": "STG_ACCOUNTING_ENTRIES completed",
                "eventParams": [
                    {
                        "eventName": "DQ_GROUP",
                        "value": "STG_ACCOUNTING_ENTRIES"
                    },
                    {
                        "eventName": "RULE_COMPLETED",
                        "value": "74/74"
                    },
                    {
                        "eventName": "RULE_PENDING",
                        "value": "0"
                    },
                    {
                        "eventName": "RULE_RUNNING",
                        "value": "0"
                    },
                    {
                        "eventName": "ERRONEOUS_RECORDS",
                        "value": "0"
                    }
                ]
            }
        },
        {
            "objectId": "1716987996892",
            "processInstanceId": "1715858557717_0daade1f-1a8a-4953-8767-9829efecaa63",
            "activityEvents": {
                "activityId": "JOB_171585855928213",
                "timestamp": "05-29-2024 01:07:01 PM",
                "eventMessage": "DQREF39212 completed Run",
                "eventParams": [
                    {
                        "eventName": "DQ_GROUP",
                        "value": "STG_ACCOUNTING_ENTRIES"
                    },
                    {
                        "eventName": "RULE_COMPLETED",
                        "value": "74/74"
                    },
                    {
                        "eventName": "RULE_RUNNING",
                        "value": "0"
                    },
                    {
                        "eventName": "RULE_PENDING",
                        "value": "0"
                    },
                    {
                        "eventName": "ERRONEOUS_RECORDS",
                        "value": "0"
                    }
                ]
            }
        }
    ]
}