Seralize/Deserialize Now Handles Collections of Records

The Serialize/Deserialize package is useful for use cases like passing records into a flow when the flow is invoked via a REST call. In that kind of situation, the inputs to the flow have to be strings and serialization converts records and record collections to strings. This is often paired with a deserialization action at the beginning of the invoked flow that converts the incoming string back into records or record collections.

With version 1.1, you can now pass a collection of records in in addition to a single record, and if you provide a json array to deserialize, you can get a collection of records out (in addition to the original support for a single record.

Check it out.