ReEnroller
ReEnroller copied to clipboard
UnmanageDevice API endpoint deprecated
The old UnmanageDevice API endpoint has been deprecated in Jamf Pro 11.21. Script needs to be updated to the https://yourServer.jamfcloud.com/api/v1/computer-inventory/{id}/remove-mdm-profile endpoint, please. Thanks.
Thanks for the heads up. Let me now if v5.8.2 resolves the issue as time permits.
Line 149 in apiMDM_remove.txt has some syntax problems.
if [ $majorVer -gt 10 ] || ([ $majorVer eq 10 ] && [ $majorMinor -gt 15 ]);then
should be
if [[ $majorVer -gt 10 || ( $majorVer -eq 10 && $majorMinor -gt 15 ) ]];then
Other than that, it is working.