v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Cases

Get the notes on an alert

Returns a paginated list of notes associated with a specific alert. You need the "View alerts" permission to use this endpoint.

get/v2/cases/{case_identifier}/alerts/{alert_identifier}/notes

Path parameters

case_identifierstring uuid required

The unique identifier of the case.

alert_identifierstring uuid required

The unique identifier of the alert.

Query parameters

page_numberinteger

One-based page index (1..N)

page_sizeinteger

The size of the page to be returned

sortstring[]

Sorting criteria in the format of: [-]property (- descending modifier).

  • Default sort order is ascending (without -).

  • Multiple sort criteria are supported.

Response

OK

firststring required

The URL path to the first page.

nextstring nullable

The URL path to the next page.

prevstring nullable

The URL path to the previous page.

selfstring required

The URL path to the current page.

total_countinteger nullable

Total number of items.

Example response

{
  "first": "/v1/resource?page_number=1",
  "next": "/v1/resource?page_number=4",
  "prev": "/v1/resource?page_number=2",
  "self": "/v1/resource?page_number=3",
  "total_count": 60
}