Bots.Business API v2
  1. Commands
Bots.Business API v2
  • Bots.Business API v2
    • BB Api docs
    • Authentication
      • Sign in
      • Get Telegram login URL
      • Sign up
      • Telegram login
      • Reset Password
    • User account
      • Update password
      • Get user details
      • Update email
      • Get linked telegram accounts
      • Get telegram link url
      • Get users session token
      • Reset api key
      • Log out all device
      • Get iteration usage
      • Turn ON or OFF ads
      • Get payment plan
    • Bots
      • Create Bot
      • Get Bots
      • Get single bot
      • Edit Bot
      • Delete Bot
      • Start or Stop bot
      • Start CSV import
      • CSV import task status
      • Copy Bot
      • Git export
      • Git import
      • Get installed libraries
      • Install Lib
      • Uninstall lib
      • Get error log
      • Clear error logs
    • Commands
      • Folders
        • Create a folder
        • Get all folders
        • Delete a folder
      • Get Commands
        GET
      • Create Command
        POST
      • Get Command Details
        GET
      • Edit Command
        PUT
      • Delete Command
        DELETE
    • 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 admin panels
      • Update admin panel values
    • Demo Store
      • Get store bots
      • Install demo bot
    • Get cloud plans
      GET
    • Schemas
      • Command Schema
      • User Public
      • Create & Edit Bot
      • Bot
  1. Commands

Create Command

POST
https://api.bots.business/v2/bots/{id}/commands
Last modified:2025-10-31 10:37:20
Use this endpoint to create a new command for a specific bot.

Request

Path Params

Query Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Api will return created command
Body

🟢200Success
🟠401Unauthorized
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.bots.business/v2/bots/123/commands?api_key=UKDZu-c68cubrIbniuE2P_nWj0p5r4IHARNrAV-I' \
--header 'Content-Type: application/json' \
--data-raw '{
    "command": "/help",
    "aliases": "madat",
    "answer": "Hello, how can i help you",
    "group": "admins",
    "help": "This command is for help",
    "keyboard_body": "Direct Contact",
    "commands_folder_id": 123,
    "auto_retry_time": "2025-10-26T09:36:59.735Z",
    "bjs_code": "Bot.sendMessage('\''How can i help you'\'')",
    "need_reply": false
}'
Response Response Example
200 - Example 1
null
Modified at 2025-10-31 10:37:20
Previous
Get Commands
Next
Get Command Details
Built with