I want to send an array inside additional claims / claim with string values with comma inside and I dont want apigee to split this strings
<AdditionalClaims>
<Claim name="output" type="string" ref="output_array" array="true"/>
</AdditionalClaims>
My String Value = “name,surname,mail”
Expected Array = [“name,surname,mail”] but instead
Output= [“name”,“surname”,“mail”]
How can I proceed with this, with preventing it to split array with comma?