Bots Business Api
  1. Authentication
Bots Business Api
  • Authentication
    • Login Account
      POST
    • Register New User
      POST
    • Get telegram login url
      POST
    • Telegram login
      GET
    • Reset Password
      POST
  • User account
    • Get user details
    • Update email
    • Update password
    • Get linked telegram accounts
    • Get telegram link url
    • Get users session token
    • Reset api key
    • Log out all device
  • Bots
    • Create Bot
    • Get Bots
    • Edit Bot
    • Launch or Stop Bot
    • Start CSV import
    • CSV import task status
    • Delete Bot
    • Copy Bot
    • Git export
    • Git import
    • Get installed libraries
    • Install Lib
    • Uninstall lib
    • Get error log
    • Clear error logs
  • Commands
    • Folders
      • Create a folder
      • Delet a folder
      • Get all folders
    • Get Commands
    • Get Command Details
    • Create Command
    • Edit Command
    • Delete Command
  • Broadcast
    • Get broadcast tasks
    • Delete Broadcast task
    • Pause broadcast task
    • Resume broadcast task
  • Chats
    • Get chats
    • Block chat
    • Unblock chat
  • Properties
    • Get properties
    • Delete property
  • Libraries
    • Get libraries
  • Admin Panel
    • Get panels
    • Save panel value
  1. Authentication

Reset Password

POST
/user/reset_password
Ues this endpoint to get a fresh password in your mail box

Request

Body Params application/jsonRequired

Example
{
    "email": "user@example.com"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/user/reset_password' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "result": "ok"
}
Previous
Telegram login
Next
Get user details
Built with