Get Record History

Log in to see full request history

API Library Examples

from fulcrum import Fulcrum fulcrum = Fulcrum('{token}') history = fulcrum.records.history('{id}') print(history)
const { Client } = require('fulcrum-app'); const client = new Client('{token}'); client.records.history('{id}') .then((page) => { page.objects.forEach(version => { console.log(version); }); }) .catch((error) => { console.log(error.message); });
require 'fulcrum' client = Fulcrum::Client.new('{token}') history = client.records.history('{id}') for version in history.objects do puts version end
Path Params
string
required

Record 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