Create Project

API Library Examples

from fulcrum import Fulcrum
fulcrum = Fulcrum('{token}')

obj = {
  "project": {
    "name": "Pinellas County",
    "description": "For records in Pinellas County"
  }
}

project = fulcrum.projects.create(obj)
print(project['project']['id'] + ' has been created!')
const { Client } = require('fulcrum-app');
const client = new Client('{token}');

const obj = {
  "name": "Pinellas County",
  "description": "For records in Pinellas County"
};

client.projects.create(obj)
  .then((project) => {
    console.log(project.id + ' has been created!');
  })
  .catch((error) => {
    console.log(error.message);
  });
require 'fulcrum'

client = Fulcrum::Client.new('{token}')

project = {
  "name"=>"Pinellas County",
  "description"=>"For records in Pinellas County"
}

response = client.projects.create(project)

puts response['id'] + ' has been created!'
Language
Authorization
Header
Click Try It! to start a request and see the response here!