Remove clients from a pipeline
curl --request POST \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_ids": [
123
]
}
'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove"
payload = { "client_ids": [123] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({client_ids: [123]})
};
fetch('https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"message": "<string>",
"success_count": 0,
"skipped_count": 0
}Salesflow pipelines
Remove clients from a pipeline
Remove one or more clients from the pipeline.
Takes client IDs (the same IDs returned by List clients in a pipeline). Each client’s active pipeline record is archived; the contact itself is kept.
POST
/
api
/
v2
/
public
/
salesflow
/
pipelines
/
{pipeline_id}
/
clients
/
remove
Remove clients from a pipeline
curl --request POST \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_ids": [
123
]
}
'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove"
payload = { "client_ids": [123] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({client_ids: [123]})
};
fetch('https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/clients/remove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"message": "<string>",
"success_count": 0,
"skipped_count": 0
}Autorizaciones
API key created in the dashboard under Settings → API Keys. Send it as Authorization: Bearer pk_....
Parámetros de ruta
ID of the pipeline. Shown in the Salesflow editor URL and in the pipeline settings.
Cuerpo
application/json
Remove clients from a pipeline.
IDs of the clients to remove.
Respuesta
OK
Response for pipeline add/remove/move operations.