ChakraHQ APIs
Home
Sign In
Home
Sign In
  1. Partner Access
  • API Keys
  • Response Format
  • Inbound Events Webhook
  • How to figure out pluginId and whatsappPhoneNumberId
  • API Rate Limits
  • Send Template Messages
    • Send Whatsapp Template Message For Process
      POST
    • Send Whatsapp Template Message For A Phone Number
      POST
    • Send Template Message (Meta API Format)
      POST
  • Send Session Messages
    • WhatsApp Messages API (pass-through)
      POST
    • Send WhatsApp session message (pass-through)
      POST
  • Message Templates - Create & Manage
    • Create WhatsApp Message Template (pass-through)
      POST
    • List WhatsApp Message Templates (pass-through)
      GET
    • Update WhatsApp Message Template (pass-through)
      POST
  • Media - Upload & Manage
    • Upload Public Media
      POST
    • Show Whatsapp Media API
      GET
    • Fetch Whatsapp Media API
      GET
    • Show Whatsapp Media Attachments API
      GET
  • Flows - Create & Manage
    • Set Business Public Key
      POST
    • Get Business Public Key
      GET
  • Leads - Create & Manage
    • Create a lead
      POST
    • Update Lead By Phone Number
      PUT
  • Chat & Chat Messages
    • List chats
    • List chat messages for a chat
    • List previous messages for a phone number
  • Campaigns - Manage
    • Add a phone number to a lead campaign
    • Remove phone number from a lead campaign
  • Partner Access
    • Create Connect Token
      POST
    • Update WhatsApp plugin configuration
      POST
    • Fetch WhatsApp plugin configuration
      GET
    • Disconnect WABA Account
      POST
  • Platform
    • Process
      • Fetch Process By Id
      • List Processes
      • Create Process
      • Update Process
      • Update Process By Primary Key
      • Delete Process
      • Delete Process By Primary Key Value
      • Bulk Create Process API
      • Bulk Update Process API
    • Task
      • Create Task API
    • User
      • List Users API
      • List Users API (V2)
      • Fetch User API
      • Fetch User API (V2)
      • Update User API
    • Photo
      • Fetch Photo API
      • Upload Photo API
      • Upload Photo API With Id
    • Background Job
      • Fetch Background Job
      • Fetch Background Job Entries API
    • Fetch Config
  • Schemas
    • Whatsapp
      • MappingType
  1. Partner Access

Fetch WhatsApp plugin configuration

GET
https://api.chakrahq.com/v1/ext/plugin/whatsapp/{pluginId}/config
You can use this API to fetch plugin configuration. This is useful for example when you are using the connected partner embedded signup and want to fetch the configuration of the end client plugins.

Request

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

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.chakrahq.com/v1/ext/plugin/whatsapp//config' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "_data": {
    "passThroughWebhookUrl": "http://localhost:3099/log",
    "enableMessageEchoesForPassThroughWebhook": true,
    "enableSendMessageTemplateEventForPassThroughWebhook": true,
    "enableChakraWebhook": true,
    "chakraWebhookUrl": "http://localhost:3099/log",
    "whichChakraWebhookEventsToSend": [
      "message",
      "status",
      "message_echo",
      "smb_message_echo"
    ],
    "whatsappBusinessAccounts": [
      {
        "id": "973055385119463",
        "name": "Sandbox WhatsApp Business Account",
        "timezone_id": "1",
        "account_review_status": "APPROVED",
        "business_verification_status": "not_verified"
      }
    ],
    "whatsappPhoneNumbers": [
      {
        "id": "1027729340496751",
        "status": "CONNECTED",
        "throughput": {
          "level": "STANDARD"
        },
        "account_mode": "LIVE",
        "is_on_biz_app": false,
        "platform_type": "CLOUD_API",
        "verified_name": "Test Number",
        "display_phone_number": "+1 555-191-4348",
        "official_business_account": {
          "oba_status": "NOT_STARTED"
        },
        "is_official_business_account": false
      }
    ]
  }
}
Modified at 2026-04-28 07:55:50
Previous
Update WhatsApp plugin configuration
Next
Disconnect WABA Account
Built with