Lipachat Docs
  • Lipachat Docs
  • Getting Started
    • Getting Started with Lipachat
  • API
    • Sending Messages
    • Sending Media
    • Sending Buttons
    • Sending Interactive Lists
    • Templates
      • Creating a Template
      • Updating a Template
      • Listing Message Templates
      • Sending Message Templates
    • Whatsapp Flows
      • Creating a flow
      • Updating a flow
      • Get flow preview
      • Publish a flow
      • Send a flow
      • List all flows
    • Webhooks
  • Reference
    • Sandbox
  • Go Live
  • Guides
    • Build A Chat Bot
  • CRM Workflow
Powered by GitBook
On this page
  • What is the Sandbox?
  • 🚀 Step-by-Step: Connect to the Sandbox
  • Common Troubleshooting
  1. Reference

Sandbox

If you’re looking to build a WhatsApp Chatbot, CRM integration, or marketing campaign, the first step is to try out our Sandbox Environment.

The sandbox allows you to test sending and receiving WhatsApp messages without needing your own WhatsApp Business Number. It's a great way to validate your setup and understand our APIs.

What is the Sandbox?

The sandbox is a test WhatsApp number provided by Lipachat. You can:

  • Send business-initiated messages

  • Receive and reply to messages

  • Test webhooks

  • Build and test chatbots

  • Run CRM-like flows

  • Simulate surveys and broadcasts

No approvals or number setup is needed—just connect and test.

🚀 Step-by-Step: Connect to the Sandbox

1. Join the Sandbox

Send the code below to our sandbox number to activate your 24-hour session:

Your session is valid for 24 hours. To keep using the sandbox, you must send a message within that window to extend it.

  1. Send a Message via API

Sample Request:

curl --location 'https://gateway.lipachat.com/api/v1/whatsapp/message/text' \
--header 'apiKey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "message": "Hello world",
    "messageId": "e66fc7b8-680f-4887-8dc8-ee062d65b54f",
    "to": "254XXXXXXX",
    "from": "254110090747"
}'

Common Troubleshooting

Problem
Solution

401 Unathorized

Ensure you are sending apiKey header.

400 No active sanbox session

Check if you are within the 24-hour window or if the number was entered correctly.

Webhook not firing

Double-check your webhook URL configuration and use webhook.site to test.

PreviousWebhooksNextGo Live

Last updated 1 day ago

Once connected, you can send a message using our .

You can also explore prebuilt examples in our

Message API
Postman Collection