Hello. I am having some trouble updating a field in my record with a linked field from another table. Here is what I have so far:
Lets say the creative record exist its just not linked
if (creativeRecord) {
return creativeRecord.id;
}
I put the return of this function above ^ in the variable creativeRecordID that I use below. The value of creativeRecordID is a string “RecordQueryResult.1234”
table.updateRecordAsync(record, {
Creative: [{ id: creativeRecordID }],
});
This is returning the error:
Can’t set cell values: invalid cell value for field ‘Creative’.
Cell value has invalid format: .0.0.id must be an objectId.
Any suggestions / solutions appreciated, Thanks!
