Skip to main content

Update User Details

This endpoint updates a user's details, currently this is limited to display name.

HTTP Request

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

Request Parameters

ParameterRequiredDescription
displayNametrueUser's desired display name

Example

CURL
curl "https://api.doordeck.com/account" \
-H "Authorization: Bearer TOKEN" \
-X POST \
-H 'content-type: application/json' \
--data-binary '{"displayName":"NEW_DISPLAY_NAME"}'
Remember
  • Replace TOKEN with your access token.
  • Replace NEW_DISPLAY_NAME with the new display name to use.