Sends a password reset request link to team user.

This function enables a team user to reset the password by sending a password reset request link.

SecurityBasicAuth
Request
query Parameters
user
required
string

The username of the team user.

Example: user=teamuser
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/Team/password_reset_request
Request samples
uapi --output=jsonpretty \
  --user=username \
  Team \
  password_reset_request \
  user='teamuser'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "password_reset_request",
  • "module": "Team",
  • "result": {
    • "data": { },
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}