Skip to main content

Retrieve audit logs

GET 

/api/v1/audit-logs

Note: To see the complete list of possible values, please reference the available filter options for audit logs under Settings in the app.

Request

Query Parameters

    startTime date-time
    endTime date-time
    page int32

    Default value: 0

    pageSize int32

    Default value: 50

    actions string[]

    Possible values: [CREATE, READ, UPDATE, DELETE]

    objectIdentifiers string[]
    objectTypes string

    Possible values: [CATALOG, TEAM, AWS_CONFIGURATION, BITBUCKET_CONFIGURATION]

    Filter by Cortex object types (CATALOG, SERVICE, TEAM, SCORECARD, etc), integration configurations (AWS_CONFIGURATION, BITBUCKET_CONFIGURATION, etc), and more.

    actorTypes string[]

    Possible values: [API_KEY, PERSONAL_API_KEY, OAUTH2, BACKSTAGE, ANONYMOUS]

    actorApiKeyIdentifiers string[]
    actorEmails string[]
    actorIpAddresses string[]
    actorRequestTypes string

    Possible values: [API_KEY_ENTITY, ATLASSIAN_WEBHOOK, SCORECARD_BADGES, SLACK_COMMAND]

Responses

Successfully retrieved audit logs

Schema

    logs

    object[]

    required

  • Array [

  • action stringrequired

    Possible values: [CREATE, UPDATE, DELETE]

    Type of action performed

    actorIdentifier string

    Readable identifier of the authenticated actor. This could an be OAuth user email, API key identifier, attributed webhook, etc.

    ipAddress string

    IP address of the actor

    objectIdentifier stringrequired

    Readable identifier of the object acted upon

    objectType stringrequired

    Type of object acted upon

    timestamp date-timerequired
  • ]

  • page int32required

    Current page number, 0-indexed

    total int32required

    Total number of results

    totalPages int32required

    Total number of pages

Loading...