On my Gravity form I have a number of multiple select fields (sets of checkboxes) and my function is using the gform_after_submission hook to get the data from the entry object to send off a request to an external API.
For the multiple select fields, how do I get a list of all selected options? I can see that there are entries like "4.1" => "Option A" but it strikes me as tedious to manually have to try every option to see if its listed or not. And I would assume that I'm just missing something in the documentation that would allow me to extract a list of all selected options either as an array or a comma-separated string or something like that.
Can anyone point me in the right direction?