v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Administration - Activity Log

Get Organization Activity Logs

Returns the organization's activity log events accessible to the current user

get/api/v3.0/orgs/{orgUuid}/activity-logs

Path parameters

orgUuidstring required

org UUID (from the Mend App: Administration General > Organization UUID).

Query parameters

cursorstring

Parameter indicates the starting point for retrieving results, the first call doesn't include a cursor parameter in the request, the API response includes the first set of results along with a cursor pointing to the last item retrieved.

limitstring

Specifies the maximum number of items to be returned in the response.

startDatestring

Start of the time window. Format: yyyy-MM-dd or yyyy-MM-dd'T'HH:mm:ss, optionally with a zone offset (Z or +HH:mm); without an offset the value is interpreted as UTC. With days, the window is [startDate, startDate + days]; without days it extends to now. Takes precedence over a timestamp filter inside search.

daysinteger

Length of the time window in days (positive integer). With startDate, the window is [startDate, startDate + days]; without startDate it is the last <days> days. Takes precedence over a timestamp filter inside search.

engineTypestring

Comma-separated engine types to filter by, e.g. SCA,SAST,IMG,IAC,AI,PLATFORM. Case-insensitive. Takes precedence over an engineType filter inside search.

Response

OK

additionalDataobject
  • totalItems: The total count of data points returned in an API response.
supportTokenstring

Example response

{
  "additionalData": {
    "totalItems": "422",
    "next": "http://someUrl?cursor=3",
    "cursor": 3
  },
  "supportToken": "1171c60d",
  "response": [
    {
      "uuid": "0190f3a1-1c2d-7e4f-8a9b-1234567890ab",
      "timestamp": "2026-05-31T14:22:05Z",
      "event": "LOGGED_IN",
      "category": "AUTHENTICATION",
      "userName": "John Smith",
      "entityType": "LIBRARY",
      "scopeType": "ORGANIZATION"
    }
  ]
}