Download Postman collection
Relative URI |
Method |
Success code |
Description |
---|---|---|---|
|
|
|
Retrieves the list of all users from your account along with their access level and other attributes. |
|
|
|
Retrieves a specific user. |
|
|
Update a specific user’s account. |
|
|
|
Deletes a specific user. |
|
|
|
|
Disables or enables a specific user’s account. |
|
|
|
Invite a user to the account. |
|
|
|
Invite multiple users to an account. |
|
|
|
Reshare the account access to a user. |
|
|
|
Update a specific part of a user's SSO client. |
There is one SSO client field you can update using a PATCH
. You must use the provided format to update the field:
[ { "op": "replace", "path": "/fieldname", "value": "newvalue" } ]
Field |
Data type |
---|---|
|
|
GET /v1/ashares HTTP/1.1 Host: api.integrator.io Authorization: Bearer my_api_token
[ { "_id":"554••••••••••••••••••00d", "accepted":true, "accessLevel":"manage", "integrationAccessLevel": [ { "_integrationId":"554••••••••••••••••••00d8", "accessLevel":"manage" }, ], "accountSSORequired":false, "lastModified":"2022-01-18T22:50:37.665Z", "sharedWithUser":{ "_id":"554••••••••••••••••••00dj", "email":"youremail@domain.com", "name":"John Smith", "allowedToResetMFA":false, "accountSSOLinked":"not_linked" } ]
This endpoint will enable or disable a user based on their current status in the platform. If a user is disabled, using this endpoint will automatically enable them (regardless of the endpoint name "disabled").
PUT /v1/ashares/63•••••••••••••••••••/disable HTTP/1.1 Host: api.integrator.io Authorization: Bearer my_api_token
GET /v1/ashares/64••••••••••••••••••cf8 HTTP/1.1 Host: api.integrator.io Authorization: Bearer my_api_token