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
    • Send Whatsapp Template Message For A Phone Number
    • Send Template Message (Meta API Format)
  • Send Session Messages
    • WhatsApp Messages API (pass-through)
    • Send WhatsApp session message (pass-through)
  • Message Templates - Create & Manage
    • Create WhatsApp Message Template (pass-through)
    • List WhatsApp Message Templates (pass-through)
    • Update WhatsApp Message Template (pass-through)
  • Media - Upload & Manage
    • Upload Public Media
    • Show Whatsapp Media API
    • Fetch Whatsapp Media API
    • Show Whatsapp Media Attachments API
  • Flows - Create & Manage
    • Set Business Public Key
    • Get Business Public Key
  • Groups - Create & Manage
    • Create Group
    • List Groups
    • Get group info
    • Update Group Settings
    • Delete Group
    • Get Group Invite Link
    • Reset Group Invite Link
    • Get Group Join Requests
    • Approve Group Join Request
    • Reject Group Join Request
    • Remove Group Participants
  • Leads - Create & Manage
    • Create a lead
    • Update Lead By Phone Number
  • 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