I'm trying to use the Ansible uri
module to replicate the below curl
statement, but I'm getting nowhere fast.
Is multipart/mixed
supported, and if so how. Any thoughts?
curl "http://server_address" \
-X POST \
-H "Auth: blahblahblah" \
-H "Content-Type: multipart/mixed;" \
-F "request_payload=@pay_file.xml" \
-F "workbook=@file.twb"