Retrieve a list of enrichment actions taken on an incident
Authentication
All BigPanda APIs require Bearer Token Authorization in the call headers.
This API uses the User API Key type of Authorization token.
Activities can be filtered by activity type, using a comma separated query string of one or more activity types with the call.
Example queries:
/activities?page=5
- will return results from the 5th set of results
/activities?per_page=40
- will return 40 results per page instead of the default 20
/activities?types=incident_commented,incident_snoozed
- will return only comment and snooze activity
/activities?types=incident_created,incident_resolved_ui_manually,incident_resolved_api_,incident_resolved_by_alerts,incident_reopened
- will return only opening and closing activity for the incident
Activity types available for retrieval are:
- incident_created
- incident_assigned
- incident_unassigned
- incident_become_flapping
- incident_commented
- incident_resolved_ui_manually
- incident_resolved_api
- Incident_alerts_resolved
- incident_tag_removed
- incident_tag_updated
- incident_merged_destination
- incident_merged_source
- incident_rcc_update
- incident_shared
- incident_splitted_destination
- incident_splitted_source
- incident_snoozed
- incident_unsnoozed
- incident_reopened
- Incident_resolved_by_alerts
To learn more about incident activity types and what fields are included with each schema, see the Activities Object documentation.
Activities are returned in reverse timestamp order, most recent activities to oldest
Returns
200: Success
Possible error codes include:
401 Unauthorized
- Authentication violation - token is invalid or missing403 Forbidden
— Insufficient permissions404 Not Found
— Entity with this ID cannot be found429 Too Many Requests
— Rate limitation reached500 Internal Server Error
— Unexpected error