The __call() method has been updated so an array of items can be passed and it will automatically be converted to a comma-delimited set of data to pass to the API. This is intended to be used for those parameters that accept multiple values:
$thing = new Thing();
$thing->id([123,124,125])
->send();