Get Single Audit Log

API Library Examples

from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')

log = fulcrum.audit_logs.find('{id}')

print(log['audit_log']) # entire log
# print(log['audit_log']['description']) # just the log description
const { Client } = require('fulcrum-app');
const client = new Client('{token}');

client.auditLogs.find('{id}')
  .then((log) => {
    console.log(log);
  })
  .catch((error) => {
    // There was a problem with the request. Is the API token correct?
    console.log(error.message);
  });
require 'fulcrum'

client = Fulcrum::Client.new('{token}')
log = client.audit_logs.find('{id}')

puts log # entire log definition
# puts log['description'] # just the log description
Language
Authorization
Header
Click Try It! to start a request and see the response here!