Die BuzzBip API stellt Ressourcen für Messaging, Kontaktverwaltung, Konversationsverfolgung und Workflow-Automatisierung bereit. Alle Pfade sind relativ zu https://api.buzzbip.com/v1.
Nachrichten
json
// POST /messages — request body
{
"to": "+21612345678",
"type": "template",
"template": {
"name": "order_confirmation",
"language": "en",
"components": [
{
"type": "body",
"parameters": [{ "type": "text", "text": "Walid" }]
}
]
}
}Kontakte
json
// POST /contacts — request body
{
"phone": "+21612345678",
"firstName": "Walid",
"lastName": "Ben Ali",
"email": "[email protected]",
"tags": ["vip", "woocommerce"]
}Konversationen
Workflows
json
// POST /workflows/{id}/trigger — request body
{
"contactId": "cnt_abc123",
"payload": {
"orderId": "ORD-9876",
"total": "149.00 TND"
}
}Template-Nachrichten müssen in BuzzBip unter Content → WhatsApp Templates vorab genehmigt werden, bevor Sie sie über die API senden können.
