Delete a Message
POST /api/delete-message
Delete a message you sent, within WhatsApp's ~1 hour "delete for everyone" window.
- Auth: Bearer Device Key
Fields
| Field | Type | Required | Notes |
|---|---|---|---|
number | string | ✔ | The recipient the message was sent to |
message_id | string | ✔ | The message_id returned when you sent it |
Request
curl -X POST https://app.rapiwa.com/api/delete-message \
-H "Authorization: Bearer YOUR_DEVICE_KEY" \
-H "Content-Type: application/json" \
-d '{"number":"8801234567890","message_id":"3EB0A1B2C3…"}'
Response
{ "success": true, "message_id": "3EB0A1B2C3…" }
Related: Send a Message