Authentication and Access
/signup
bash
curl https://ops.minusonedb.com/signup \
-d "username=youremail@email.com&password=passphrase"bash
m1 signup| Parameter | Type | Required |
|---|---|---|
| username | String | Yes |
| password | String | Yes |
- Rights: none
- Verb: POST
Creates a user for you on ops. If successful, you can immediately authenticate using the username and password you supplied.
/auth
bash
curl https://ops.minusonedb.com/auth \
-d "username=admin@email.com&password=passphrase"bash
m1 auth| Parameter | Type | Required |
|---|---|---|
| username | String | Yes |
| password | String | Yes |
- Rights: none
- Verb: POST
Log in and retrieve a token for service access.
▶200 OKReturns an authentication token
/user/password
bash
curl https://ops.minusonedb.com/user/password \
-d "password=newPassphrase" \
-H "m1-auth-token: $myToken"bash
m1 ops user/password -password newPassphrase| Parameter | Type | Required |
|---|---|---|
| password | String | Yes |
- Rights: none
- Verb: POST
Change user password. A correct auth token must be included in the request.


