Remind a user password

POST /api/2.0/people/password

Request

Reminds a password to the user using the email address specified in the request.

Headers

Acceptenum of string

Can be one of: application/json, text/json, text/plain.

Content-Typeenum of string

Can be one of: application/json, application/*+json, text/json.

Body

Member request parameters

emailstringformat: email

Email

Examples

POST /api/2.0/people/password HTTP/1.1
Accept: application/json
Content-Length: 42
Content-Type: application/json
Host: example.com

{
  "email": "Guido_Weimann@hotmail.com"
}
curl --request POST \
  --url https://example.com/api/2.0/people/password \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "Guido_Weimann@hotmail.com"
}'

Responses

200

Email with the password

Get Help

  • If you have any questions about ONLYOFFICE DocSpace, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).