Is there any way to get a record by a cell value?
I have an API hitting a webhook and passing in an external ID, which is present in the table as a value in the “External ID” cell. I need to get the associated Record.
Seems the only solution is to iterate over the entire table until I find the assocaited record using
if( record.getCellValue("External ID") == input.externalId ) { ... }
Would love to know if there is a better way.