get https://api.fulcrumapp.com/api/v2/sketches.json
API Library Examples
from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')
sketches = fulcrum.sketches.search(url_params={'form_id':'{id}'})
for sketch in sketches['sketches']:
# print(sketch) # entire sketch metadata
print(sketch['access_key']) # just the sketch keyconst { Client } = require('fulcrum-app');
const client = new Client('{token}');
client.sketches.all({'form_id':'{id}'})
.then((page) => {
page.objects.forEach(sketch => {
// console.log(sketch); // entire sketch metadata
console.log(sketch.access_key); // just the sketch key
});
})
.catch((error) => {
console.log(error.message);
});require 'fulcrum'
client = Fulcrum::Client.new('{token}')
sketches = client.sketches.all({'form_id':'{id}'})
for sketch in sketches.objects do
# puts sketch # entire sketch metadata
puts sketch['access_key'] # just the sketch key
end