Depending on the data center of your Keeper tenant, the domain will change.
US: keepersecurity.com
EU: keepersecurity.eu
AU: keepersecurity.com.au
JP: keepersecurity.jp
CA: keepersecurity.ca
GOV: govcloud.keepersecurity.us
Set the Headers
Key
Value
Authorization
Bearer YOUR_AUTH_TOKEN
Content-Type
application/scim+json
Set the Body
Choose raw and select JSON format.
Adding a User - Users/POST
Set the HTTP Method and URL
Set the HTTP method to POST using the dropdown menu.
Be sure to replace <node_id> with your actual node ID where you want the user added. This Node ID is provided to you on the SCIM setup page in the Keeper Admin Console, or it can be found using Keeper Commander's "enterprise-info --nodes" command.
Set the Body
Click on the "Body" tab below the URL field
Choose raw and select JSON format
Add the JSON body with the details of the user you want to add. Here's an example JSON body:
You can also add the user to a team upon creation by including the <group_id> for "value" in the groups object. This is the only required information to add the user to a group. "$ref" and "display" are optional
Send the Request
Response HTTP codes
HTTP code
Meaning
201
Created
success
409
Conflict
Email already taken
428
Precondition Required
Number of licensed seats was exceeded.
Locking/Unlocking a user - Users/PATCH
Set the Method to PATCH and the URL to the following:
The response will be a JSON object containing details of all groups under the specified node. The "id" field within each group object represents the group ID. In Keeper, a group is represented by a Keeper Team object. The ID is the Keeper Team UID.
To get the information of a single group, include the group ID at the end of the URL.
https://keepersecurity.com/api/rest/scim/v2/<node_id>/Groups/<group_id>
Creating a Team - Groups/POST
Create a New Request
Click on "New" and then select "Request" from the dropdown menu.
Alternatively, you can click on the "Request" tab if it is already open
Set the HTTP Method and URL
Set the HTTP method to POST using the dropdown menu