Moayad Proxmox Staff Member Staff member Jan 2, 2020 3,342 326 108 31 Vienna shop.proxmox.com Aug 25, 2021 #2 Actually, I do not use Postman but you can check it from the curl command for example: Bash: curl -s -k -X $'POST' -H $'Csrfpreventiontoken: ${CSRF}' -b $'PVEAuthCookie=${Cookie}' $'https://10.10.10.24:8006/api2/json/nodes/pve/qemu/101/agent/exec?command=df+-h' ' You can also intercept the request on Postman using --proxy flag e.g: Bash: curl -s -k -X $'POST' -H $'Csrfpreventiontoken: ${CSRF}' -b $'PVEAuthCookie=${Cookie}' $'https://10.10.10.24:8006/api2/json/nodes/pve/qemu/101/agent/exec?command=df+-h' --proxy 127.0.0.1:8080 '
Actually, I do not use Postman but you can check it from the curl command for example: Bash: curl -s -k -X $'POST' -H $'Csrfpreventiontoken: ${CSRF}' -b $'PVEAuthCookie=${Cookie}' $'https://10.10.10.24:8006/api2/json/nodes/pve/qemu/101/agent/exec?command=df+-h' ' You can also intercept the request on Postman using --proxy flag e.g: Bash: curl -s -k -X $'POST' -H $'Csrfpreventiontoken: ${CSRF}' -b $'PVEAuthCookie=${Cookie}' $'https://10.10.10.24:8006/api2/json/nodes/pve/qemu/101/agent/exec?command=df+-h' --proxy 127.0.0.1:8080 '