Skip to content

Fetch a Task by ID

GET https://api.copper.com/developer_api/v1/tasks/{{example_task_id}}

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

Example Requests

Get Task

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/tasks/{{example_task_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"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{
  "id": 3716920,
  "name": "My First Task",
  "related_resource": {
    "id": 144296,
    "type": "project"
  },
  "assignee_id": 137658,
  "due_date": 1496799000,
  "reminder_date": null,
  "completed_date": null,
  "priority": "None",
  "status": "Open",
  "details": null,
  "tags": [],
  "custom_fields": [],
  "date_created": 1496712856,
  "date_modified": 1496712857
}