Я пытаюсь обновить настраиваемое поле, которое является дочерним заданием. Вот где я нахожусь и результат.
string costCode= "DX Piping";
dynamic timesheet = new JObject();
timesheet.id = tsID;
timesheet.start = isoDate;
//Need to update custom field:247513 with the value in costcode should be another jobject?
timesheet.customfields["247513"] = costCode;
timesheet.end = isoDate;
Это работает в Postman.
"data":
[
{
"id": 45037255,
"end": "2020-06-17T14:00:00-04:00",
"start": "2020-06-17T12:00:00-04:00",
"customfields": {
"247513": "DX Piping"
}
}
]
}
Это приводит к ошибке: Невозможно выполнить привязку времени выполнения к нулевой ссылке. Спасибо, что посмотрели