Skip to main content
Question

API | Overview of Automated Device Enrollment devices

  • July 10, 2026
  • 4 replies
  • 92 views

Forum|alt.badge.img+1

Is the API call for the "Overview of Automated Device Enrollment devices" working for anyone? I use Jamf School, and while many endpoints work perfectly, this one doesn't. I am getting a "404 Not Found" error.


GET
https://{yourDomain}.jamfcloud.com/api/dep

4 replies

ChrisMono
Forum|alt.badge.img+2
  • New Contributor
  • July 10, 2026

With Jamf Pro, its under Device-Enrollments with a resource URL of 

/api/v1/device-enrollments

Julien Lattari
Forum|alt.badge.img

Yeah, got same problem here, with JAMF SCHOOL.
/api/v1/device-enrollments not working and GET https://{yourDomain}.jamfcloud.com/api/dep getting “404 Not Found" error


Julien Lattari
Forum|alt.badge.img

Find !
We have to specify in the header request the version of the API

X-Server-Protocol-Version = 3 or 4


By default, the version is 1 and in this version, there is no DEP api :)
 

Versioning

At the time of writing, the API version defaults to 1. You can specify an alternative version by using the "X-Server-Protocol-Version" header.

https://school.jamfcloud.com/api/docs/#


Forum|alt.badge.img+1
  • Author
  • New Contributor
  • July 13, 2026

Find !
We have to specify in the header request the version of the API

X-Server-Protocol-Version = 3 or 4


By default, the version is 1 and in this version, there is no DEP api :)
 

Versioning

At the time of writing, the API version defaults to 1. You can specify an alternative version by using the "X-Server-Protocol-Version" header.

https://school.jamfcloud.com/api/docs/#

Great, it works now. Thank you very much!