curl --request POST \
--url https://api.vendaze.com/v1/pipelines \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Novos Negócios",
"stages": [
{
"name": "Prospecção",
"type": "open",
"probability": 10
},
{
"name": "Proposta",
"type": "open",
"probability": 40
},
{
"name": "Negociação",
"type": "open",
"probability": 70
},
{
"name": "Ganho",
"type": "win",
"probability": 100
},
{
"name": "Perdido",
"type": "lost",
"probability": 0
}
]
}
'