Sep 13, 2024 — Akamai MFA API updates

This release adds a set of new API operations that enhance the management of user accounts and groups configured in ​Akamai MFA​. Below is a summary of the newly introduced operations. See the ​Akamai MFA​ API documentation to learn more.

User management

  1. Add a user

    • Creates a new user in ​Akamai MFA​.
    • Endpoint: POST /users
  2. Update a user

    • Updates user records with new details such as name, last name, email, or username.
    • Endpoint: PUT /users/​{userId}
  3. Add an alias to a user

    • Adds a new alias (alternative username) to a specified user.
    • Endpoint: POST /users/​{userId}/​aliases
  4. Delete an alias assigned to a user

    • Deletes a specified alias associated with a user.
    • Endpoint: DELETE /users/​{userId}/​aliases/​{userAliasId}

Group management

  1. Add a group

    • Creates a new group with a given group name and summary.
    • Endpoint: POST /groups
  2. List groups

    • Retrieves a list of all groups.
    • Endpoint: GET /groups
  3. Get a group

    • Fetches details of a specified group by its ID.
    • Endpoint: GET /groups/​{groupId}
  4. Delete a group

    • Deletes a specified group by its ID.
    • Endpoint: DELETE /groups/​{groupId}
  5. Add a user to a group

    • Adds a specified user to a group.
    • Endpoint: POST /groups/​{groupId}/​users/​{userId}
  6. Remove a user from a group

    • Removes a specified user from a group.
    • Endpoint: DELETE /groups/​{groupId}/​users/​{userId}