I have the following script to create records in a table.
Event Name is a Single Select field. But I get an error "Error: Field "...." cannot accept the provided value."
await passTable.createRecordAsync({
"Event Name": event,
"Event Date/Time": date,
"Notes": notes,
});
}
"Event Name": [{name: event.toString()}]
and
"Event Name": [{name: event)}]
but neither of them work. Any suggestions?

