ReEnroller icon indicating copy to clipboard operation
ReEnroller copied to clipboard

UnmanageDevice API endpoint deprecated

Open 3panman opened this issue 2 months ago • 1 comments

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.

3panman avatar Oct 20 '25 20:10 3panman

Thanks for the heads up. Let me now if v5.8.2 resolves the issue as time permits.

BIG-RAT avatar Oct 23 '25 04:10 BIG-RAT

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.

jfiliceatcsumb avatar Nov 15 '25 00:11 jfiliceatcsumb