curl --request PATCH \
--url https://api.vendaze.com/v1/pipelines/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Renamed Pipeline",
"stages": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Prospecting",
"type": "open",
"probability": 15
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"name": "Proposal Sent",
"type": "open",
"probability": 50
},
{
"name": "New: Pilot",
"type": "open",
"probability": 75
},
{
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "Closed Won",
"type": "win",
"probability": 100
},
{
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"name": "Closed Lost",
"type": "lost",
"probability": 0
}
]
}
'