get
https://api.fulcrumapp.com/api/v2/records.json
Get a list of records from your organization that can be filtered by dimensions such as form, project, changeset, bounding box, and date ranges.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
API Library Examples
from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')
records = fulcrum.records.search(url_params={'form_id': '{id}'})
for record in records['records']:
# print(record) # entire record
print(record['id']) # just the record idconst { Client } = require('fulcrum-app');
const client = new Client('{token}');
client.records.all({
form_id: '{id}'
})
.then((page) => {
page.objects.forEach(record => {
// console.log(record); // entire record
console.log(record.id); // just the record id
});
})
.catch((error) => {
console.log(error.message);
});require 'fulcrum'
client = Fulcrum::Client.new('{token}')
records = client.records.all({'form_id':'{id}'})
for record in records.objects do
# puts record # entire record definition
puts record['id'] # just the record id
end