Skip to content

v0.0.80

Choose a tag to compare

@ShocOne ShocOne released this 30 Nov 08:53
· 1698 commits to main since this release
10f5770

Jamf Pro Classic API - User Groups

Added user groups with examples to sdk

Operations

  • GET /JSSResource/usergroups

    • GetUserGroups operation retrieves a serialized list of all User Groups.
  • GET /JSSResource/usergroups/id/{id}

    • GetUserGroupsByID operation fetches a specific User Group by its ID.
  • GET /JSSResource/usergroups/name/{name}

    • GetUserGroupsByName operation fetches a specific User Group by its name.
  • POST /JSSResource/usergroups/id/0

    • CreateUserGroup operation creates a new User Group.
  • PUT /JSSResource/usergroups/id/{id}

    • UpdateUserGroupByID operation updates an existing User Group by its ID.
  • PUT /JSSResource/usergroups/name/{name}

    • UpdateUserGroupByName operation updates an existing User Group by its name.
  • DELETE /JSSResource/usergroups/id/{id}

    • DeleteUserGroupByID operation deletes a User Group by its ID.
  • DELETE /JSSResource/usergroups/name/{name}

    • DeleteUserGroupByName operation deletes a User Group by its name.