Is there a way to add to the multi part form for the RadzenUpload ? In order to upload to Box, I have to add a header and a form called attributes with a filename and a "parent folder" number
F attributes='{"name":"Contract.pdf", "parent":{"id":"11446498"}}'
curl -i -X POST "https://upload.box.com/api/2.0/files/content" \
-H "authorization: Bearer <ACCESS_TOKEN>" \
-H "content-type: multipart/form-data" \
-F attributes='{"name":"Contract.pdf", "parent":{"id":"11446498"}}' \
-F file=@<FILE_NAME>