Skip to main content
POST
/
v1
/
users
/
me
/
trading-password
Set Trading Password
curl --request POST \
  --url https://api.aries.com/v1/users/me/trading-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "MySecurePassword123!"
}
'
{
  "error": "invalid request",
  "codes": [
    {
      "code": "INVALID_PASSWORD",
      "description": "Password must be between 8 and 64 characters",
      "field": "password"
    }
  ],
  "metadata": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Trading password to set

password
string<password>
required
Example:

"MySecurePassword123!"

Response

Trading password set successfully