Skip to content

v0.0.70

Choose a tag to compare

@ShocOne ShocOne released this 17 Nov 15:11
· 1753 commits to main since this release
405be5b

Jamf Pro Classic API - Mobile Device Configuration Profiles

Added SDK coverage for Mobile Device Configuration Profiles with examples

Endpoints

  • GET /JSSResource/mobiledeviceconfigurationprofiles
    GetMobileDeviceConfigurationProfiles retrieves a serialized list of all Mobile Device Configuration Profiles.

  • GET /JSSResource/mobiledeviceconfigurationprofiles/id/{id}
    GetMobileDeviceConfigurationProfileByID fetches details of a single Mobile Device Configuration Profile by its ID.

  • GET /JSSResource/mobiledeviceconfigurationprofiles/name/{name}
    GetMobileDeviceConfigurationProfileByName retrieves details of a Mobile Device Configuration Profile by its name.

  • GET /JSSResource/mobiledeviceconfigurationprofiles/id/{id}/subset/{subset}
    GetMobileDeviceConfigurationProfileByIDBySubset fetches a specific Mobile Device Configuration Profile by its ID and a specified subset.

  • GET /JSSResource/mobiledeviceconfigurationprofiles/name/{name}/subset/{subset}
    GetMobileDeviceConfigurationProfileByNameBySubset fetches a specific Mobile Device Configuration Profile by its name and a specified subset.

  • POST /JSSResource/mobiledeviceconfigurationprofiles/id/0
    CreateMobileDeviceConfigurationProfile creates a new Mobile Device Configuration Profile. The ID 0 in the endpoint indicates creation.

  • PUT /JSSResource/mobiledeviceconfigurationprofiles/id/{id}
    UpdateMobileDeviceConfigurationProfileByID updates an existing Mobile Device Configuration Profile by its ID.

  • PUT /JSSResource/mobiledeviceconfigurationprofiles/name/{name}
    UpdateMobileDeviceConfigurationProfileByName updates an existing Mobile Device Configuration Profile by its name.

  • DELETE /JSSResource/mobiledeviceconfigurationprofiles/id/{id}
    DeleteMobileDeviceConfigurationProfileByID deletes a Mobile Device Configuration Profile by its ID.

  • DELETE /JSSResource/mobiledeviceconfigurationprofiles/name/{name}
    DeleteMobileDeviceConfigurationProfileByName deletes a Mobile Device Configuration Profile by its name.