LeadsyGroup
  1. Users
LeadsyGroup
  • API V1
    • Users
      • Remove a user avatar
        DELETE
      • Upload a user avatar
        PUT
      • Create a user
        POST
      • Validate JWT
        GET
      • Find a user by email
        GET
      • Show all users
        GET
      • Login into the application
        POST
      • Reset user password
        POST
      • Show a user
        GET
      • Update a user
        PUT
    • Stages
      • List stages
    • Companies
      • Remove a company avatar
      • Upload a company avatar
      • Create company
      • List companies
      • Get an specific company
    • User Onboarding
      • Mark as completed the onboarding
      • Approve T&C
    • User Company Relation
      • Create user_accesses for a user
      • Show user_accesses for a user
      • Remove an specific user_access
      • Update user_accesses for a user
    • Accesses
      • List all available accesses
      • List access by id
    • Memberships
      • List available memberships
      • Info of a membership
    • Legal Terms
      • Current available for signature
      • Get legal terms per id
    • Invitations
      • Creates user invitation
      • Get pending invitations by email
    • Import
      • List of ImportFiles
      • Check status of an import
  1. Users

Reset user password

POST
/api/v1/users/reset_password

Request

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Reset password email sent successfully
Body

🟠404
🟠409
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/users/reset_password' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com"
}'
Response Response Example
200 - Example 1
{
    "message": "string"
}
Modified at 2026-02-17 19:55:10
Previous
Login into the application
Next
Show a user
Built with