Create a Project

This documentation is for LiquidPlanner New: next.liquidplanner.com

๐Ÿ“˜

Copy the example below to create a Project.

When trying examples, remember to use the IDs from your workspace and encode filter parameters as explained in Character Escaping / Encoding.

curl --location --request POST 'https://next.liquidplanner.com/api/workspaces/<workspace id>/items/v1' \
--header 'Authorization: Bearer <API Token>' \
--header 'Content-Type: application/json' \
--data-raw '{
            "name": "New Sample Project",
            "itemType": "projects",
            "targetFinish": "2023-12-31T16:14:34.651534Z",
            "description": "This is a sample project description text",
            "parentId": 425280,
            "workspaceId": 21,
              "customFieldValues": [
        {
          "name": "Color",
          "value": "Blue"
        }]
        }'