Send and manage messages across different channels
Wipsy CRM API (1.1.0)
API documentation for Wipsy CRM - A multi-channel customer relationship management platform.
Para que esta documentación devuelva datos de tu cuenta en lugar de ejemplos ficticios:
- Ve a tu panel de Wipsy y obtén tu API Key.
- En el panel derecho de "Try it", haz clic en el botón de Authentication.
- Pega tu clave en el campo x-api-key.
- Asegúrate de tener seleccionado el Production server en el selector de servidores.
- MensajerÃa multicanal (WhatsApp, Instagram, Facebook Messenger)
- Gestión de Pipeline y embudos de venta
- Sistema de etiquetas y campos personalizados
- Soporte para mensajes citados y estados de entrega (enviado, entregado, leÃdo)
- Autenticación de agentes y permisos segmentados
Download OpenAPI description
Overview
Wipsy Support
License
Languages
Servers
Production server
https://api.getwipsy.com/functions/v1
Request
Send a message via WhatsApp, Instagram, or Facebook Messenger. Requires API key authentication.
Security
ApiKeyAuth
Recipient identifier. Format depends on channel:
- WhatsApp: Phone number (e.g., "+573188779043" or "573188779043")
- Instagram: Instagram user ID (e.g., "828925823321473" or "ig_828925823321473")
- Facebook Messenger: Facebook user ID (e.g., "123456789" or "fb_123456789")
Example: "+573188779043"
Channel to send message through. If not specified, auto-detected based on 'to' format:
whatsapp: Default for phone numbersinstagram: For Instagram DMs (prefix 'ig_' in 'to' field)facebookormessenger: For Facebook Messenger (prefix 'fb_' in 'to' field)
Enum"whatsapp""instagram""facebook""messenger"
Example: "whatsapp"
WhatsApp message ID (wamid.xxx) of the message to quote/reply to (WhatsApp only)
Example: "wamid.HBgMNTczMTg4Nzc5MDQzFQIAERgSOTg5ODFCMTQ5ODMzQTJCOTZGAA=="
- Production serverhttps://api.getwipsy.com/functions/v1/api-send-message
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- whatsappText
- whatsappMedia
- whatsappQuoted
- instagramText
- instagramMedia
- facebookText
- facebookMedia
curl -i -X POST \
https://api.getwipsy.com/functions/v1/api-send-message \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"to": "+573188779043",
"message": "Hello, how can I help you?"
}'Response
application/json
{ "success": true, "messageId": "string", "recipientId": "string", "provider": "evolution", "data": {} }