LiquidPlanner Classic Forum

Ask a Question
Back to All

Create new project containing a note and a file

Posted on behalf of gemberlingb. Original posting date 2013-12-11

I have successfully created new projects via the API so far but I would like to know the best practice for including a file, a note, and a task(s) on creation of a project. Does the project have to be created first and then you take the project id and associate a note and file for another api call or can the note and file be submitted at the time the project is initially created?

This is similar to what I am using to create a project. Please expound on the following code:

$body = array(
    "project" => array("name" => "New SLBC Project", "owner_id" => "344851", "promise_by" => "12/15/13")
    );
$json_body = json_encode($body);
$conn = curl_init("https://app.liquidplanner.com/api/workspaces/xxxxx/projects");
curl_setopt_array($conn, array(
    CURLOPT_ENCODING => "",
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_FORBID_REUSE => true,
    CURLOPT_FRESH_CONNECT => true,
    CURLOPT_HEADER => false,
    CURLOPT_HTTPHEADER => array('Content-Type:application/json', 'Content-Length: ' . strlen($json_body)),
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $json_body,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_USERPWD => $_SESSION['email'] . ":" . $_SESSION['pwd']
));
$response = curl_exec($conn);
curl_close($conn);
return $response;