Wexa API Explorer Logo

Wexa API Explorer

Explore and interact with various actions provided by the Wexa API

Categories

Select a category and action to view API details

Select a category and action to view API details

Example: Email category, send action

Here you can see all the connectors available and their actions. Each connector provides a complete description of what it does and its required fields.

Input Fields

to *
Email address of the recipient
"to": "recipient@example.com"
subject *
The subject line for the email
"subject": "Meeting Tomorrow"
body *
The content of the email
"body": "Hello, let's meet tomorrow at 10 AM."
cc
Carbon copy recipients
"cc": "manager@example.com"

Output Fields

message
Confirmation message
"message": "Email sent successfully"

Sample Request & Response

Request

{
  "to": "recipient@example.com",
  "subject": "Meeting Tomorrow",
  "body": "Hello, let's meet tomorrow at 10 AM.",
  "cc": "manager@example.com"
}

Response

{
  "status": "success",
  "data": {
    "message": "Email sent successfully",
    "timestamp": "2025-06-12T11:17:05+05:30",
    "email_id": "msg_123456789",
    "delivery_status": "queued",
    "recipient": "recipient@example.com",
    "sender": "notifications@yourapp.com",
    "tracking": {
      "opened": false,
      "clicked": false,
      "delivered": false
    },
    "metadata": {
      "campaign_id": "welcome_series",
      "template_version": "v2.1",
      "user_id": 12345,
      "priority": "high"
    }
  }
}