List API input nodes of a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/input-nodes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/input-nodes"
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}/input-nodes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"input_node_uuid": "<string>",
"name": "<string>",
"is_active": true,
"pipeline_id": 123,
"ingest_path": "<string>",
"target_stage_id": 123,
"target_stage_name": "<string>",
"default_lead_value": 123
}
],
"count": 0
}Salesflow pipelines
List API input nodes of a pipeline
List the pipeline’s API-type input nodes — the only kind the ingest
endpoints can be addressed to. Each entry carries the input_node_uuid
and a ready-made ingest_path. Nodes fed by calls, WhatsApp or SMS are
internal and not listed. Create API input nodes in the Salesflow editor.
GET
/
api
/
v2
/
public
/
salesflow
/
pipelines
/
{pipeline_id}
/
input-nodes
List API input nodes of a pipeline
curl --request GET \
--url https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/input-nodes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.dialtu.com/api/v2/public/salesflow/pipelines/{pipeline_id}/input-nodes"
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}/input-nodes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"data": [
{
"input_node_uuid": "<string>",
"name": "<string>",
"is_active": true,
"pipeline_id": 123,
"ingest_path": "<string>",
"target_stage_id": 123,
"target_stage_name": "<string>",
"default_lead_value": 123
}
],
"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.