Skip to content

Instantly share code, notes, and snippets.

@pirkla
Last active February 11, 2022 12:46
Show Gist options
  • Save pirkla/bc28ea8c8fa51d917d6949273b6152a2 to your computer and use it in GitHub Desktop.
Save pirkla/bc28ea8c8fa51d917d6949273b6152a2 to your computer and use it in GitHub Desktop.
Generate a bearer token from the Jamf Pro UAPI
# Generate a token
tokenResp=$(curl -k -u "username:password" -X POST "https:/yoururl.jamfcloud.com/uapi/auth/tokens" -H "accept: application/json")
# parse the token from the response
token=$(echo $tokenResp | awk -F '[:,{"}]' ' {print $6} ')
# pass the token into a cURL command
curl -k -X GET "https://yoururl.jamfcloud.com/uapi/v1/inventory-preload" -H "accept: application/json" -H "Authorization: Bearer $token"
# The expiration time can be found with the following
time=$(echo $tokenResp | awk -F "[:,{}]" ' {print $5} ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment