Create a New Project¶
POST https://api.copper.com/developer_api/v1/projects
Note that this endpoint is eligible to return computed custom field values, click here for more information.
The following fields are required for this request:
- name
Body¶
{
"name":"New Demo Project"
}
Example Requests¶
New Project¶
curl --location --request POST "https://api.copper.com/developer_api/v1/projects" \
--header "X-PW-AccessToken: YOUR_TOKEN_HERE" \
--header "X-PW-Application: developer_api" \
--header "X-PW-UserEmail: YOUR_EMAIL_HERE" \
--header "Content-Type: application/json" \
--data "{
\"name\":\"New Demo Project\"
}"
{
"id": 208105,
"name": "New Demo Project",
"related_resource": null,
"assignee_id": null,
"status": "Open",
"details": null,
"tags": [],
"custom_fields": [],
"date_created": 1496713867,
"date_modified": 1496713867
}