Skip to content

v0.0.76

Choose a tag to compare

@ShocOne ShocOne released this 19 Nov 18:17
· 1737 commits to main since this release
5c4701c

Jamf Pro Classic API - Mobile Device Provisioning Profiles

Added SDK coverage for mobile device provisioning profiles with examples

Endpoints

  • GET /JSSResource/mobiledeviceprovisioningprofiles
    GetMobileDeviceProvisioningProfiles retrieves a serialized list of all Mobile Device Provisioning Profiles.

  • GET /JSSResource/mobiledeviceprovisioningprofiles/id/{id}
    GetMobileDeviceProvisioningProfileByID fetches a specific Mobile Device Provisioning Profile by its ID.

  • GET /JSSResource/mobiledeviceprovisioningprofiles/name/{name}
    GetMobileDeviceProvisioningProfileByName fetches a specific Mobile Device Provisioning Profile by its name.

  • GET /JSSResource/mobiledeviceprovisioningprofiles/uuid/{uuid}
    GetMobileDeviceProvisioningProfileByUUID fetches a specific Mobile Device Provisioning Profile by its UUID.

  • POST /JSSResource/mobiledeviceprovisioningprofiles/id/{id}
    CreateMobileDeviceProvisioningProfileByID creates a new Mobile Device Provisioning Profile by its ID.

  • POST /JSSResource/mobiledeviceprovisioningprofiles/name/{name}
    CreateMobileDeviceProvisioningProfileByName creates a new Mobile Device Provisioning Profile by its name.

  • POST /JSSResource/mobiledeviceprovisioningprofiles/uuid/{uuid}
    CreateMobileDeviceProvisioningProfileByUUID creates a new Mobile Device Provisioning Profile by its UUID.

  • PUT /JSSResource/mobiledeviceprovisioningprofiles/id/{id}
    UpdateMobileDeviceProvisioningProfileByID updates an existing Mobile Device Provisioning Profile by its ID.

  • PUT /JSSResource/mobiledeviceprovisioningprofiles/name/{name}
    UpdateMobileDeviceProvisioningProfileByName updates an existing Mobile Device Provisioning Profile by its name.

  • PUT /JSSResource/mobiledeviceprovisioningprofiles/uuid/{uuid}
    UpdateMobileDeviceProvisioningProfileByUUID updates an existing Mobile Device Provisioning Profile by its UUID.

  • DELETE /JSSResource/mobiledeviceprovisioningprofiles/id/{id}
    DeleteMobileDeviceProvisioningProfileByID deletes a Mobile Device Provisioning Profile by its ID.

  • DELETE /JSSResource/mobiledeviceprovisioningprofiles/name/{name}
    DeleteMobileDeviceProvisioningProfileByName deletes a Mobile Device Provisioning Profile by its name.

  • DELETE /JSSResource/mobiledeviceprovisioningprofiles/uuid/{uuid}
    DeleteMobileDeviceProvisioningProfileByUUID deletes a Mobile Device Provisioning Profile by its UUID.