JobGroups

Gets the flag history for the specified job group

Retrieve the flag history for a job group (required scope jobs:read)

get/v1/jobGroups/{jobGroupId}/flags/history

Path parameters

jobGroupIdinteger required

The job group id

Query parameters

pageNumberinteger

The page number being requested

pageSizeinteger

The page size being requested

Headers

Customer-Idinteger required

The customer identifier

Response

OK

pageNumberinteger

The page number of the response where 1 is the first page

pageSizeinteger

The number of items requested for the current page

pageItemCountinteger

The number of items returned in the current page

Example response

{
  "items": [
    {
      "historyId": 123456,
      "flagId": 789,
      "flagName": "High Priority",
      "appliedAt": "2024-01-15T10:30:00.0000000+00:00",
      "ownerName": "john.doe@example.com",
      "comments": "Requires special attention"
    }
  ],
  "pageNumber": 2,
  "pageSize": 100,
  "pageItemCount": 55
}