List stages in a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"id": 123,
"name": "<string>",
"stage_type": "<string>",
"position": 123,
"color": "<string>",
"is_entry_point": true,
"client_count": 0
}
],
"count": 0
}Salesflow pipelines
List stages in a pipeline
List every stage of a pipeline, ordered by position, with the number of active clients currently in each one.
GET
/
api
/
v2
/
public
/
salesflow
/
pipelines
/
{pipeline_id}
/
stages
List stages in a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/stages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"id": 123,
"name": "<string>",
"stage_type": "<string>",
"position": 123,
"color": "<string>",
"is_entry_point": true,
"client_count": 0
}
],
"count": 0
}Authorizations
API key created in the dashboard under Settings → API Keys. Send it as Authorization: Bearer pk_....
Path Parameters
ID of the pipeline. Shown in the Salesflow editor URL and in the pipeline settings.