Get Record History

Retrieve the complete version history of a record.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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

The unique identifier of the record whose history you want to retrieve.

Responses

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