Skip to content

Update a Project

PUT https://api.copper.com/developer_api/v1/projects/{{example_project_id}}

Updates are only applied to fields explicitly specified in the request body. For example, if an update request is made with an empty body, no updates will be made. To remove the value from a field, the request body must specify the target field value as 'null'.

Note that this endpoint is eligible to return computed custom field values, click here for more information.

Body

1
2
3
{
  "details":"This is an update"
}

Example Requests

Update Project

1
2
3
4
5
6
7
8
curl --location --request PUT "https://api.copper.com/developer_api/v1/projects/{{example_project_id}}" \
  --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 "{
  \"details\":\"This is an update\"
}"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{
  "id": 144296,
  "name": "Customize Your New CRM",
  "related_resource": {
    "id": 9607579,
    "type": "company"
  },
  "assignee_id": null,
  "status": "Open",
  "details": "This is an update",
  "tags": [],
  "custom_fields": [],
  "date_created": 1483988830,
  "date_modified": 1496776314
}