List clients in a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients"
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}/clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"client_id": 123,
"client_name": "<string>",
"stage_id": 123,
"stage_name": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"client_phone": "<string>",
"client_email": "<string>"
}
],
"count": 0
}Salesflow pipelines
List clients in a pipeline
List every active client on a pipeline together with its current stage.
The list is not paginated; archived (removed) clients are excluded.
GET
/
api
/
v2
/
public
/
salesflow
/
pipelines
/
{pipeline_id}
/
clients
List clients in a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients"
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}/clients', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"client_id": 123,
"client_name": "<string>",
"stage_id": 123,
"stage_name": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"client_phone": "<string>",
"client_email": "<string>"
}
],
"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.