Skip to main content

Change Password

warning

This endpoint is only available to users with Sentry Interactive issued auth tokens.

This endpoint is used to allow a user to change their password.

HTTP Request

POST https://api.doordeck.com/account/password

Request Parameters

ParameterRequiredDescription
oldPasswordtrueUser's old password.
newPasswordtrueUser's desired new password.

Example

CURL
curl "https://api.doordeck.com/account/password" \
-H "Authorization: Bearer TOKEN" \
-X POST \
-H 'content-type: application/json' \
--data-binary '{"oldPassword":"OLD_PASSWORD","newPassword":"NEW_PASSWORD"}'
Remember
  • Replace TOKEN with your access token.
  • Replace OLD_PASSWORD with the users' current password and NEW_PASSWORD with their desired password.