User Creation + Management
Last updated
Was this helpful?
Last updated
Was this helpful?
All Amigo users must be associated with a subscription plan. For integration:
Each user requires a valid subscription plan assignment
The "Internal Lifetime Plan" is recommended for your users
First, retrieve the list of available subscription plans using the auth token of an admin:
From the response, locate and record the id
of the "Internal Lifetime Plan" for use in user creation:
User Preferences: The settings shown above are recommended for integrations
Role Assignment: Use DefaultUserRole
unless specific custom roles are required
Custom Roles: Contact the Amigo team if custom role definitions are needed
After creating a user, you must verify the account:
Update a user's details as follows:
Delete a user with a given user ID as follows:
A 200 response means the user was deleted. However, internally the deletion may be either implemented as a hard or soft delete. A soft delete is reflected by a non-emptynot_deletable_reasons
array in the response.
User ID Mapping: Save the returned user_id
and map it to your internal user management system
Auth Token Management: Generate and manage auth tokens for each user as needed
User State Tracking: Maintain user state in your system to provide seamless experiences
Retrieve all subscription plans satisfying the given filters. Only the latest version of each plan is returned.
This endpoint requires the following permissions:
User:GetUserInfo
on the authenticated user.The source of the subscription plan
Whether the plan still accepts new customers
The ids of the plans to fetch
The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
Delete an user. This endpoint deletes the user from the Amigo system, and also deletes all the user's information as much as possible.
User
object, which is marked deleted
. The Google user is deleted, but the
Stripe user is kept for compliance.This endpoint requires the following permissions:
User.GetUserInfo
on the authenticated user.User.DeleteUser
on the user to delete.The identifier of the user to delete.
The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
Invite a user to the Amigo platform. The endpoint will create a new user in the organization, linked to the supplied email address. The created user will remain in the unverified status and will not have access to most of Amigo's services.
If login_link
is not-None
, an email containing it will be sent to the user's email with descriptions indicating that this would allow the user to login
and start their Amigo experience. Otherwise, no email will be sent.
This endpoint requires the following permissions:
User.GetUserInfo
for the authenticated user.User.InviteUser
on the user to invite.The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
The first name of the user.
The last name of the user.
The email of the user. This email uniquely identifies the user in the organization.
The ID of the subscription plan to be assigned to the user. This cannot be a subscription plan that accepts Stripe checkouts. The plan will be pending until the user clicks the invite link.
Must be set if subscription_plan_id
is set. If the plan is lifetime or usage-based, this field is always 1. If the plan is period-based, the number of plan-units
to enable for the user. For instance, if the plan is a monthly one and this field is 6, then the user would receive 6 months of the plan.
Additional metadata to be attached to the subscription if subscription_plan_id
is defined. It must be a JSON-serializable map.
{}
If specified, this link will be sent to the user's email as the link to start their Amigo experience. For Amigo's frontend, this would be the user's organization's login page with their email already filled in.
The role to assign to the user. Only roles that are returned from the Get roles endpoint are allowed.
If specified, the user's preferences will be set to this value instead of the organization default.
Mark the user as verified. It's not permitted to use the Amigo platform with an unverified user account.
This endpoint requires the following permissions:
User:GetUserInfo
for the authenticated user.This endpoint may require the following permissions:
User.UpdateUserInfo
for the requested user if any field in Request
is not None
.The identifier of the user to verify.
The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
The first name of the user, if the user has a different preference than what's already indicated during invitation. Only updated if specified.
The last name of the user, if the user has a different preference than what's already indicated during invitation. Only updated if specified.
The preferences of the user, if the user has a different preference than what's already indicated during invitation. Only updated if specified.
No body
Update information about an user. Only fields that are specified in the request are updated.
This endpoint requires the following permissions:
User:GetUserInfo
for the authenticated user.User:UpdateUserInfo
for the user to update.The identifier of the user to update information for.
The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
The first name of the user to update. If null
, the first name is not modified.
The last name of the user to update. If null
, the last name is not modified.
Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while. If null
, the preference is not modified.
The preferred language for the user. The agent will attempt to converse to the user in this language if set. This field must be in the ISO 639-1 alpha-2 format.
If null
, erase the user's preferred setting, and the specific language used will be the agent's default spoken language. In order to not update this field, leave it out of the request or
set it to an empty object (_NotSet
).
{}
A specific type to indicate that a field is not set in the request.
Whether conversations are visible to the admins. If null
, the preference is not modified.
Whether the user's user model is visible to the admins. If null
, the preference is not modified.
A list of additional context to update. If null
, the context is not modified.
No body