Skip to content

v0.0.72

Compare
Choose a tag to compare
@ShocOne ShocOne released this 17 Nov 16:31
· 1177 commits to main since this release
11de98a

Jamf Pro Classic API - Mobile Device Enrollment Profiles

added sdk coverage for endpoints with examples

Endpoints

  • GET /JSSResource/mobiledeviceenrollmentprofiles
    GetMobileDeviceEnrollmentProfiles retrieves a serialized list of all Mobile Device Enrollment Profiles.

  • GET /JSSResource/mobiledeviceenrollmentprofiles/id/{id}
    GetMobileDeviceEnrollmentProfileByID fetches details of a single Mobile Device Enrollment Profile by its ID.

  • GET /JSSResource/mobiledeviceenrollmentprofiles/name/{name}
    GetMobileDeviceEnrollmentProfileByName retrieves details of a Mobile Device Enrollment Profile by its name.

  • GET /JSSResource/mobiledeviceenrollmentprofiles/invitation/{invitation}
    GetProfileByInvitation fetches a Mobile Device Enrollment Profile by its invitation.

  • GET /JSSResource/mobiledeviceenrollmentprofiles/id/{id}/subset/{subset}
    GetMobileDeviceEnrollmentProfileByIDBySubset fetches a specific Mobile Device Enrollment Profile by its ID and a specified subset.

  • GET /JSSResource/mobiledeviceenrollmentprofiles/name/{name}/subset/{subset}
    GetMobileDeviceEnrollmentProfileByNameBySubset fetches a specific Mobile Device Enrollment Profile by its name and a specified subset.

  • POST /JSSResource/mobiledeviceenrollmentprofiles/id/0
    CreateMobileDeviceEnrollmentProfile creates a new Mobile Device Enrollment Profile. The ID 0 in the endpoint indicates creation.

  • PUT /JSSResource/mobiledeviceenrollmentprofiles/id/{id}
    UpdateMobileDeviceEnrollmentProfileByID updates an existing Mobile Device Enrollment Profile by its ID.

  • PUT /JSSResource/mobiledeviceenrollmentprofiles/name/{name}
    UpdateMobileDeviceEnrollmentProfileByName updates an existing Mobile Device Enrollment Profile by its name.

  • PUT /JSSResource/mobiledeviceenrollmentprofiles/invitation/{invitation}
    UpdateMobileDeviceEnrollmentProfileByInvitation updates an existing Mobile Device Enrollment Profile by its invitation.

  • DELETE /JSSResource/mobiledeviceenrollmentprofiles/id/{id}
    DeleteMobileDeviceEnrollmentProfileByID deletes a Mobile Device Enrollment Profile by its ID.

  • DELETE /JSSResource/mobiledeviceenrollmentprofiles/name/{name}
    DeleteMobileDeviceEnrollmentProfileByName deletes a Mobile Device Enrollment Profile by its name.

  • DELETE /JSSResource/mobiledeviceenrollmentprofiles/invitation/{invitation}
    DeleteMobileDeviceEnrollmentProfileByInvitation deletes a Mobile Device Enrollment Profile by its invitation.