Skip to main content

List audit logs

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

Path Parameters
    orgId string required
Query Parameters
    source string
    action string
    startTime date-time

    start_time and end_time are inclusive

    endTime 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
    createdAt date-time

    The time the log was created.

  • ]
GET /v1beta1/organization/:orgId/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
orgId — path required
source — query
action — query
startTime — query
endTime — query
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/organization/:orgId/auditlogs' \
-H 'Accept: application/json'