Daboogie
New User
Joined: 14 Oct 2019 Posts: 1 Location: USA
|
|
|
|
Hopefully this helps someone out since it gave me so much trouble.
If you have to use cURL on UNIX to invoke a script using ISPZXML, the format that worked for me is:
Code: |
$(curl $url \
--header "Content-Type: application/json" \
--request POST \
-T "$xml_file" \
-u $username:$password) |
I'm sure there's a better way, but this is what was available for me at the time and there seems to be very little useful guides online for this. |
|