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/api-get-contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.getwipsy.com/functions/v1/api-get-contacts?contactId=497f6eca-6276-4993-bfeb-53cbbbba6f08&limit=100' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "success": true, "data": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5", "name": "string", "last_name": "string", "phone": "string", "whatsapp_id": "string", "email": "string", "profile_picture_url": "http://example.com", "pipeline_stage_id": "16ac276d-82f6-4f2a-bbab-e2e260c45fe4", "pipeline_stage": { … }, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "tags": [ … ], "custom_fields": [ … ] } }
- Production serverhttps://api.getwipsy.com/functions/v1/api-update-contact
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.getwipsy.com/functions/v1/api-update-contact \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"contactId": "b5ec5d98-4bee-4da1-ad24-dde86346cb1d",
"name": "string",
"last_name": "string",
"email": "string",
"phone": "string",
"pipeline_stage_id": "16ac276d-82f6-4f2a-bbab-e2e260c45fe4",
"custom_fields": {
"property1": "string",
"property2": "string"
}
}'Response
application/json
{ "success": true, "data": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5", "name": "string", "last_name": "string", "phone": "string", "whatsapp_id": "string", "email": "string", "profile_picture_url": "http://example.com", "pipeline_stage_id": "16ac276d-82f6-4f2a-bbab-e2e260c45fe4", "pipeline_stage": { … }, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "tags": [ … ], "custom_fields": [ … ] } }