Users
The user API allows you to manage users for your application.
Create a new user.
GET
https://api.sitebot.com/api/v1/user/create
Query Parameters
Name | Type | Description |
---|---|---|
password* | String | |
email* | String |
Get an existing user.
GET
https://api.sitebot.com/api/v1/user/get
Query Parameters
Name | Type | Description |
---|---|---|
id or email* | String |
List existing users.
GET
https://api.sitebot.com/api/v1/user/list
Upgrade a users profile.
GET
https://api.sitebot.com/api/v1/user/update-profile
Query Parameters
Name | Type | Description |
---|---|---|
id or email* | String | |
first_name | String | |
last_name | String | |
title | String | |
phone | String | |
custom_1 | String |
Update a users email address.
GET
https://api.sitebot.com/api/v1/user/update-email
Update a users password.
GET
https://api.sitebot.com/api/v1/user/update-password
Initiate a user email change. The new email address will be sent a confirmation email.
GET
https://api.sitebot.com/api/v1/user/email-change
Initiate a user password reset. The user will be emailed a link to change their password.
GET
https://api.sitebot.com/api/v1/user/password-reset
GET
https://api.sitebot.com/api/v1/user/auth
GET
https://api.sitebot.com/api/v1/user/delete
Last updated