API de Mensagens do WhatsApp para Extensão Chrome
  1. CRM Tab
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. CRM Tab

Remove CRM Tab

POST
https://api.opt-api.com/api/tabs

Request

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

Example
{
    "phones": [
        "5511912345678"
    ],
    "tabs": [
        {
            "tabId": "tab-b24d123f-d903-ab7b-8013-8413edbbd02a",
            "action": "add"
        }
    ]
}

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/tabs' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "phones": [
        "5511912345678"
    ],
    "tabs": [
        {
            "tabId": "tab-b24d123f-d903-ab7b-8013-8413edbbd02a",
            "action": "add"
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-03-09 17:11:30
Previous
Add CRM Tab
Next
Remarketing Tab
Built with