Skip to content

List Stages in a Pipeline

GET https://api.copper.com/developer_api/v1/pipeline_stages/pipeline/{pipeline_id}

Example Requests

Stages in a Pipeline

1
2
3
4
5
curl --location --request GET "https://api.copper.com/developer_api/v1/pipeline_stages/pipeline/213214" \
  --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
20
21
22
23
24
25
26
27
28
29
30
31
32
[
  {
    "id": 987790,
    "name": "Qualified",
    "pipeline_id": 213214,
    "win_probability": 5
  },
  {
    "id": 987791,
    "name": "Follow-up",
    "pipeline_id": 213214,
    "win_probability": 10
  },
  {
    "id": 987792,
    "name": "Presentation",
    "pipeline_id": 213214,
    "win_probability": 20
  },
  {
    "id": 987793,
    "name": "Contract Sent",
    "pipeline_id": 213214,
    "win_probability": 40
  },
  {
    "id": 987794,
    "name": "Negotiation",
    "pipeline_id": 213214,
    "win_probability": 80
  }
]