Send and manage messages across different channels
Wipsy CRM API (1.1.0)
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/
- Production serverhttps://api.getwipsy.com/functions/v1/agent-get-chats
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.getwipsy.com/functions/v1/agent-get-chats \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"agentSession": {
"agent": {
"id": "string",
"name": "string",
"email": "string",
"role": "string",
"owner_user_id": "string",
"organization_id": "string"
},
"permissions": {
"property1": true,
"property2": true
},
"session": {
"token": "string",
"expires_at": "2019-08-24T14:15:22Z"
}
},
"status": "all"
}'Response
application/json
{ "chats": [ { … } ] }
- Production serverhttps://api.getwipsy.com/functions/v1/agent-get-messages
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.getwipsy.com/functions/v1/agent-get-messages \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"agentSession": {
"agent": {
"id": "string",
"name": "string",
"email": "string",
"role": "string",
"owner_user_id": "string",
"organization_id": "string"
},
"permissions": {
"property1": true,
"property2": true
},
"session": {
"token": "string",
"expires_at": "2019-08-24T14:15:22Z"
}
},
"chatId": "f255124e-3419-4f6e-b7ee-17a6577db94d",
"limit": 50
}'Response
application/json
{ "messages": [ { … } ] }