欢迎各位兄弟 发布技术文章
这里的技术是共享的
To use the Jamf Pro API with curl to retrieve profile information, you can use the following command:
```
curl -u username:password -H "Accept: application/json" -X GET "https://your-jamf-url/JSSResource/computerconfigurationprofiles"
```
Replace `username` and `password` with your Jamf Pro credentials, and `your-jamf-url` with the URL of your Jamf Pro server.
This command will return the list of computer configuration profiles in JSON format. You can further modify the command to filter or retrieve specific profile information based on your requirements.