Skip to main content
POST
/
v1
/
whatsapp
/
messages
/
send-interactive
Send Interactive Message
curl --request POST \
  --url https://karibu.briq.tz/v1/whatsapp/messages/send-interactive \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "recipient": "<string>",
  "interactive": {}
}
'
{
  "success": true,
  "data": {
    "message_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "sender_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "provider_message_id": "<string>"
  },
  "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "errors": null
}

Authorizations

X-API-Key
string
header
required

Headers

X-API-Key
string
required
X-App-ID
string | null

Body

application/json
recipient
string
required
Required string length: 4 - 20
Example:

"255712345678"

interactive
Interactive · object
required

Raw Meta WhatsApp interactive object (e.g. button, list). Passed through to the provider as-is.

sender_id
string<uuid> | null
check_window
boolean
default:true

Response

Sent synchronously (status: sent)

WhatsApp send envelope (WaApiResponse with a WaSendResult data payload).

success
boolean
default:true
required
data
WaSendResult · object
required

Payload returned in data for a successful send.

request_id
string<uuid>
required
errors
null