Is there a way to pass an array of records to delete to a Server Connect action?
For example: I want to be able to select multiple rows in a table by using the checkbox and have all of them deleted.

Is there a way to pass an array of records to delete to a Server Connect action?
For example: I want to be able to select multiple rows in a table by using the checkbox and have all of them deleted.

There are various ways you could do this, but however you do it, you can send a POST array including the record IDs to an API/Server Connect, with a Database Delete step with a condition like this:
IN {{$_POST.idlist}}
If your table is in a form, you could use name="idlist[]" for the checkboxes. Or you could populate a hidden field and submit that.
Thanks @TomD! I’ll give that a try.