Get Single Audit Log

Log in to see full request history

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
Path Params
string
required

Audit Log ID

Headers
string
Defaults to application/json
Responses

Language
Credentials
URL
Click Try It! to start a request and see the response here! Or choose an example:
application/json