Skip to content

Fetch an Activity by ID

GET https://api.copper.com/developer_api/v1/activities/{{example_activity_id}}

Example Requests

Get Activity

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/activities/{{example_activity_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
{
  "id": 3061844454,
  "parent": {
    "id": 9607580,
    "type": "company"
  },
  "type": {
    "id": 190711,
    "category": "user"
  },
  "user_id": 137658,
  "details": "Demo phone call",
  "activity_date": 1496710783,
  "old_value": null,
  "new_value": null,
  "date_created": 1496710787,
  "date_modified": 1496710783
}