How is the below code / script to be used in conjunction with the Jamf API?
Also, the url "yourserver".jamfcloud.com - I've tried our server name but no go. We used to be on-prem and now we're jamfcloud, anyone know of to get the name it's looking for?
Thank you!
curl --request POST \\
--url https://yourserver.jamfcloud.com/api/v1/macos-managed-software-updates/send-updates \\
--header 'accept: application/json' \\
--header 'content-type: application/json' \\
--data '
{
"skipVersionVerification": false,
"applyMajorUpdate": false,
"forceRestart": false
}
'