Skip to end of banner
Go to start of banner

User and Group APIs

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

User and Group APIs allow you to manage users and groups in your Org.

User Management APIs

POST /users

Creates a user.

GET /users/{email}

Retrieves the user record associated with the specified email address.

PUT /users/{email}

Updates the user record associated with the specified email address.

DELETE /users/{email}

Deletes the user record associated with the specified email address.

Group Management APIs

POST /groups

Creates a group.

GET /groups/{org}

Retrieves the list of groups in an Org.

GET /groups/{org}/{groupname}

Retrieves information about the specified group.

PATCH /groups/{org}/{groupname}

Adds or removes users from the specified group.

PUT /groups/{org}/{groupname}

Replaces the member list of the group.

DELETE /groups/{org}/{groupname}

Deletes the group from the Org.

  • No labels