List run events

Description

Retrieve a list of events for a group run.

Request

HTTP Method: GET

Path Parameter Description
group_id The ID of the group.
group_run_guid The guid of the group run.
Query Parameter Description
per_page Optional Set the number of results returned per page.
page Optional Specify the page of results to return if there are multiple pages. Defaults to page 1.
curl -X GET \
 https://<<META.tenant.domain>>/api/v1/groups/<<group_id>>/runs/<<group_run_guid>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return the JSON Array describing the events for a group run.

Field description

Parameter Description
id ID of the event.
action_id ID of action that emitted the event.
created_at ISO 8601 Timestamp representing date and time the event was emitted.

Sample response

{
  "group_run_events": [
    {
      "id": 1126,
      "action_id": 3775,
      "created_at": "2023-12-13T16:19:50Z"
    },
    {
      "id": 1131,
      "action_id": 3809,
      "created_at": "2023-12-13T16:19:50Z"
    }
  ],
  "meta": {
    "current_page": "https://<<META.tenant.domain>>/api/v1/groups/<<group_id>>/runs/<<group_run_guid>>?per_page=20&page=1",
    "previous_page": null,
    "next_page": null,
    "per_page": 20,
    "pages": 1,
    "count": 2
  }
}
Was this helpful?