Sep 13, 2024 — Akamai MFA API updates
4 months ago by kmieciek@akamai.com
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
-
Add a user
- Creates a new user in Akamai MFA.
- Endpoint:
POST
/users
-
Update a user
- Updates user records with new details such as name, last name, email, or username.
- Endpoint:
PUT
/users/{userId}
-
Add an alias to a user
- Adds a new alias (alternative username) to a specified user.
- Endpoint:
POST
/users/{userId}/aliases
-
Delete an alias assigned to a user
- Deletes a specified alias associated with a user.
- Endpoint:
DELETE
/users/{userId}/aliases/{userAliasId}
Group management
-
Add a group
- Creates a new group with a given group name and summary.
- Endpoint:
POST
/groups
-
List groups
- Retrieves a list of all groups.
- Endpoint:
GET
/groups
-
Get a group
- Fetches details of a specified group by its ID.
- Endpoint:
GET
/groups/{groupId}
-
Delete a group
- Deletes a specified group by its ID.
- Endpoint:
DELETE
/groups/{groupId}
-
Add a user to a group
- Adds a specified user to a group.
- Endpoint:
POST
/groups/{groupId}/users/{userId}
-
Remove a user from a group
- Removes a specified user from a group.
- Endpoint:
DELETE
/groups/{groupId}/users/{userId}