Last active
February 11, 2022 12:46
-
-
Save pirkla/bc28ea8c8fa51d917d6949273b6152a2 to your computer and use it in GitHub Desktop.
Generate a bearer token from the Jamf Pro UAPI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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