Skip to main content

List audit logs

Returns a list of audit logs of an organization in Frontier.

Path Parameters
    org_id string required
Query Parameters
    source string
    action string
    ignore_system boolean
    start_time date-time

    start_time and end_time are inclusive

    end_time date-time
Responses

A successful response.


Schema
    logs object[]
  • Array [
  • id A unique identifier of the audit log if not supplied will be autogenerated
    source Source service generating the event required

    The source service generating the event.

    action Action performed, e.g. project.create, user.update, serviceuser.delete required
    actor object
    id string
    type string
    name string
    target object
    id string
    type string
    name string
    context object
    property name* string
    created_at date-time

    The time the log was created.

  • ]
GET /v1beta1/organizations/:org_id/auditlogs

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
org_id — path required
source — query
action — query
ignore_system — query
start_time — query
end_time — query
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/organizations/:org_id/auditlogs' \
-H 'Accept: application/json'