Add a user
|
POST api/2.0/people
|
Adds a new portal user with the first name, last name, email address, and several optional parameters specified in the request.
|
Add an activated user
|
POST api/2.0/people/active
|
Adds an activated portal user with the first name, last name, email address, and several optional parameters specified in the request.
|
Delete a user
|
DELETE api/2.0/people/{userid}
|
Deletes a user with the ID specified in the request from the portal.
|
Delete my profile
|
DELETE api/2.0/people/@self
|
Deletes the current user profile.
|
Delete users
|
PUT api/2.0/people/delete
|
Deletes a list of the users with the IDs specified in the request.
|
Get a profile by user email
|
GET api/2.0/people/email
|
Returns the detailed information about a profile of the user with the email specified in the request.
|
Get a profile by user name
|
GET api/2.0/people/{username}
|
Returns the detailed information about a profile of the user with the name specified in the request.
|
Get my profile
|
GET api/2.0/people/@self
|
Returns the detailed information about the current user profile.
|
Get profiles
|
GET api/2.0/people
|
Returns a list of profiles for all the portal users.
|
Invite users
|
POST api/2.0/people/invite
|
Invites users specified in the request to the current portal.
|
Register a Personal account
|
POST api/2.0/people/register
|
Registers a user on the Personal portal.
|
Resend activation emails
|
PUT api/2.0/people/invite
|
Resends emails to the users who have not activated their emails.
|
Send a notification to change a phone
|
POST api/2.0/people/phone
|
Sends a notification to the user with the ID specified in the request to change their phone number.
|
Send instructions to change email
|
POST api/2.0/people/email
|
Sends a message to the user email with the instructions to change the email address connected to the portal.
|
Send the deletion instructions
|
PUT api/2.0/people/self/delete
|
Sends instructions for deleting a user profile.
|
Update a user
|
PUT api/2.0/people/{userid}
|
Updates the data for the selected portal user with the first name, last name, email address, and/or optional parameters specified in the request.
|
Update user language
|
PUT api/2.0/people/{userid}/culture
|
Updates the user language with the parameter specified in the request.
|