Update a deal change to a new pipeline

We have several new deal pipelines withthe same exact deal stages, is there a way to change the pipline a deal is in I have tried…

https://api.hubapi.com/deals/v1/deal/:dealId

{
 "properties": [
 {
 "name": "pipeline",
 "value": ": pipeline_id"
 }
 ]
}

Hey @kjphilips,

Have you tried changing both the pipeline and dealstage at the same time?

i.e.

{
 "properties": [
 {
 "name": "pipeline",
 "value": "pipelineid"
 },
 {
 "name": "dealstage",
 "value": "dealstage internal name"
 }
 ]
}

I tried the above POST body on Update a deal | Deals API and it works for me.

That was EXACTLY what it needed, makes sense. Thank you so much!!