Is there a way to remove Predecessors from a row via the API in c#?

Using the API I am able to add and update the predecessors column. However, I am not able to remove it via API. I tried by passing a rowId as 0, but that returns an invalid, which populates the column with #REF for that that.

Is there a way to remove or delete Predecessors using the api?

Below is the code I tried to pass rowId as 0. What is the workaround for this?

{
  "cells": [
    {
     "columnId": xxxxxxxxxx,
     "objectValue":{
         "objectType": "PREDECESSOR_LIST",
         "predecessors": [
                {
                    "rowId": 0,
                    "type":"FS"
                }
              ]
          }
    }
     ]
}

Thank you

Answers