Authentication
Last updated
Last updated
All API calls to Appmixer must include the Authorization
header set to Bearer ACCESS_TOKEN
.
POST
https://api.appmixer.com/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.appmixer.com/user
Create user.
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.appmixer.com/user
Get user information.
curl "https://api.appmixer.com/user" -H "Authorization: Bearer [ACCESS_TOKEN]"
Name | Type | Description |
---|---|---|
password
string
Password.
username
string
Username.
password
string
Password.
string
Email address.
username
string
Email address.