PATCH
/
auth
/
change-password
curl --request PATCH \
  --url https://app.teable.io/api/auth/change-password \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"password":"stringst","newPassword":"stringst"}'

Authorizations

Authorization
string
header
required

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

Body

application/json
password
string
required

Minimum 8 chars

Minimum length: 8
newPassword
string
required

Minimum 8 chars

Minimum length: 8