User
API for users
Last updated
API for users
Last updated
POST
https://api.YOUR_TENANT.appmixer.cloud/user/auth
Sign-in a user with credentials and get their access token.
curl -XPOST "https://api.appmixer.com/user/auth" -H "Content-type: application/json" -d '{ "username": "abc@example.com", "password": "abc321" }'
Name | Type | Description |
---|---|---|
POST
https://api.YOUR_TENANT.appmixer.cloud/user
Create user. By default, this endpoint is open (does not require authentication). This can be changed by setting the API_USER_CREATE_SCOPE system configuration. If you set the value of API_USER_CREATE_SCOPE to for example admin
, then an admin token will be required to call this API.
curl -XPOST "https://api.appmixer.com/user" -H "Content-type: application/json" -d '{ "username": "abc@example.com", "email": "abc@example.com", "password": "abc321" }'
GET
https://api.YOUR_TENANT.appmixer.cloud/user
Get current user information.
curl "https://api.appmixer.com/user" -H "Authorization: Bearer [ACCESS_TOKEN]"
GET
https://api.YOUR_TENANT.appmixer.cloud/users/:userId
Admin token required.
GET
https://api.YOUR_TENANT.appmixer.cloud/users
Admin token required.
Examples:
Get the first 30 users with a scope "acme1":
curl -XGET "https://api.appmixer.com/users?filter=scope:acme1&sort=created:-1&limit=30&offset=0" -H 'Authorization: Bearer [ADMIN_TOKEN]'
Get all users who's username includes a pattern:
curl -XGET "https://api.appmixer.com/users?pattern=joe" -H 'Authorization: Beader [ADMIN_TOKEN]'
GET
https://api.YOUR_TENANT.appmixer.cloud/users/count
Admin token required
PUT
https://api.YOUR_TENANT.appmixer.cloud/users/:userId
Admin token required.
DELETE
https://api.YOUR_TENANT.appmixer.cloud/users/:userId
Admin token required. This operation stops all running flows and deletes all the user's data from the system - logs, accounts, tokens ... The response is a ticket, the operation may take a long time. You can use the ticket and poll for the result with the next API method.
GET
https://api.YOUR_TENANT.appmixer.cloud/users/:userId/delete-status/:ticket
POST
https://api.YOUR_TENANT.appmixer.cloud/user/change-password
User token required.
POST
https://api.YOUR_TENANT.appmixer.cloud/user/reset-password
Admin token required.
POST
https://api.YOUR_TENANT.appmixer.cloudforgot-password
See the Forgot Password Service configuration for more details.
POST
https://api.YOUR_TENANT.appmixer.cloud/forgot-password/reset
Reset user password by providing unique code generated via POST /user/forgot-password
API.
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
password*
string
Password.
username*
string
Username, has to have an email format.
password*
string
Password.
string
Email address.
username
string
Email address.
scope
Array
Array of scopes.
vendor
String|Array
One or more vendors.
oldPassword*
String
Old password
newPassword*
String
New password
email*
String
User email address
password*
String
New password
email*
String
Email address
password*
String
New password. The minimum length of the password is five characters.
code*
String
Code generated via forgot-password.