# Waboxapp

Waboxapp integrates WhatsApp messaging into CRM systems, allowing businesses to centralize customer communications for sales and support

- **Category:** phone & sms
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 2
- **Triggers:** 0
- **Slug:** `WABOXAPP`
- **Version:** 20260312_00

## Tools

### Waboxapp Webhook ACK Event

**Slug:** `WABOXAPP_WEBHOOK_ACK_EVENT`

Tool to process incoming message acknowledgment events. Use when waboxapp posts real-time deliver/read statuses to your webhook endpoint. Validates token before processing.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `ack` | integer | Yes | ACK status code: 0=not sent, 1=sent, 2=delivered, 3=read |
| `uid` | string | Yes | Your account phone number in international format (e.g., 34666123456) |
| `cuid` | string | No | Your custom message ID if set when sending |
| `muid` | string | No | Waboxapp message unique ID (e.g., 62397B58E3E0B) |
| `event` | string | Yes | Must be "ack" to indicate an acknowledgment event |
| `token` | string | Yes | Webhook token to verify source (must match your waboxapp token) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Receive incoming WABOXAPP message event

**Slug:** `WABOXAPP_WEBHOOK_MESSAGE_EVENT`

Tool to receive real-time incoming WhatsApp message events via webhook. Use after configuring your webhook URL to handle WABOXAPP POST form payloads.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `uid` | string | Yes | Your WABOXAPP account phone number in international format |
| `event` | string | Yes | Event type (fixed value 'message') |
| `token` | string | Yes | WABOXAPP API or application token for verification |
| `contact` | object | Yes | Information about the message sender |
| `message` | object | Yes | Metadata and payload of the received message |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
