I'm trying to send the following data as multipart/form-data using postman, where the backend is not able to get the "details" array and it's nested parts
{
"name": "any",
"status": "ACTIVE",
"slug": "any",
"member_id": 1,
"details": {
"available_countries": {
"US",
"CA"
},
"available_languages": {
"en_CA",
"fr_CA"
},
"default_language": "en_CA",
"prefix": "prefix",
"time_zone": "EST"
},
"enabled" : true,
"xml" : " <?xml version='1.0' encoding='UTF-8'?> <note> <to>test</to> <from>test</from><heading>test</heading><body>test</body></note> "
}