API de Mensagens do WhatsApp para Extensão Chrome
  1. Start Conversation Bot
API de Mensagens do WhatsApp para Extensão Chrome
  • WhatsApp Extension API
  • Bearer Token
  • Messages
    • Text message
      POST
    • Audio Message
      POST
    • Doc Message
      POST
    • Video Message
      POST
    • Image Message
      POST
  • Labels
    • Get Labels
      GET
    • Add Label
      POST
    • Remove Label
      POST
  • CRM Tab
    • Get All CRM Tabs
      GET
    • Add CRM Tab
      POST
    • Remove CRM Tab
      POST
  • Remarketing Tab
    • Get All Remarketing Tabs
      GET
    • Add Remarketing Tab
      POST
    • Remove Remarketing Tab
      POST
  • Start Conversation Bot
    • Get Bots List
      GET
    • Start Bot
      POST
  1. Start Conversation Bot

Start Bot

Developing
POST
https://api.opt-api.com/api/bots

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "numberId": "5517996174244",
    "bot": {
        "id": "cd4ca013-85b6-71eb-2486-a8e8554e2986",
        "type": "FLOWISE"
    },
    "message": "A proxima mensagem será enviada para o cliente, inicie como se vocÊ estivesse iniciando a conversa com ele."
}

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 'https://api.opt-api.com/api/bots' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "numberId": "5517996174244",
    "bot": {
        "id": "cd4ca013-85b6-71eb-2486-a8e8554e2986",
        "type": "FLOWISE"
    },
    "message": "A proxima mensagem será enviada para o cliente, inicie como se vocÊ estivesse iniciando a conversa com ele."
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-03-12 00:44:05
Previous
Get Bots List
Built with