API Reference

for object "Project"

Find here the list of actions to apply on the objects, and the data reference for this object.




What is a project ?

A project is one of the big topics of your company daily activity




Getting the projects list

GET /projects.xml

Returns all projects, page by page
Add a page parameter to navigate




Getting a single project

GET /projects/#{id}.xml

Returns a single project, identified by its id




Creating a new project

POST /projects.xml

Creates a new project, and returns the project data




Updating an existing project

PUT /projects/#{id}.xml

Updates some fields of an existing project




Deleting an existing project

DELETE /projects/#{id}.xml

Deletes the project identified by its id




Object data

<project>
 <id>if of this object</id>
 <name>project's name</name>
 <reference>a reference of the project</reference>
 <description></description>
 <status_id>status (see below)</status_id>
 <budget_euros>cost budget in euros</budget_euros>
 <budget_hours>time budget in hours</budget_hours>
 <budget_halfdays>time budget in hours</budget_halfdays>
 <start_date>start date</start_date>
 <end_date>end date</end_date>
</project>




Possible values of status

  • 1 if active

  • 2 if suspended

  • 3 if done