Platform API 3.0
/- Get Organization Activity Logs
Get Organization Activity Log Options
Get Organization Activity...
Returns the organization's activity log events accessible to the current user
Security
bearer-key
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.
GET
curl -i -X GET \
'https://baseUrl/api/v3.0/orgs/{orgUuid}/activity-logs?cursor=string&limit=50&startDate=string&days=0&engineType=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'OK
- totalItems: The total count of data points returned in an API response.
Example:
{ "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }
Response
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ { … } ] }