Update Project

API Library Examples

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

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

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

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

client.projects.update('{id}', obj)
  .then((project) => {
    console.log(project.id + ' has been updated!');
  })
  .catch((error) => {
    console.log(error.message);
  });
project = {
  "name"=>"Pinellas County, FL",
  "description"=>"For records in Pinellas County, FL"
}

response = client.projects.update('{id}', project)

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