Skip to content

Authentication and Access

/signup

bash
curl https://ops.minusonedb.com/signup \
  -d "username=youremail@email.com&password=passphrase"
bash
m1 signup
ParameterTypeRequired
usernameStringYes
passwordStringYes
  • 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
ParameterTypeRequired
usernameStringYes
passwordStringYes
  • 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
ParameterTypeRequired
passwordStringYes
  • Rights: none
  • Verb: POST

Change user password. A correct auth token must be included in the request.

© 2021-2026 MinusOne, Inc.