Developers

Build with BizzBuzz API

Extensive documentation, guides, and API references to help you build powerful conversational experiences.

Messages

Messages are the individual units of communication within a Conversation. You can send text, images, and template messages to your customers.

Send a message

POST /messages

Sends a new message to a conversation or contact.

// Request
{
  "conversation_id": "conv_123456789",
  "type": "text",
  "content": {
    "body": "Hello! How can we help you today?"
  }
}
// Response
{
  "id": "msg_55555555",
  "conversation_id": "conv_123456789",
  "status": "sent",
  "created_at": "2024-03-20T14:35:00Z"
}

List messages

GET /conversations/:id/messages

Retrieves a paginated list of messages for a specific conversation.

// Response
{
  "data": [
    {
      "id": "msg_55555555",
      "type": "text",
      "direction": "outbound",
      "content": { "body": "Hello!" },
      "created_at": "2024-03-20T14:35:00Z"
    },
    {
      "id": "msg_44444444",
      "type": "text",
      "direction": "inbound",
      "content": { "body": "Hi there." },
      "created_at": "2024-03-20T14:34:00Z"
    }
  ],
  "has_more": false
}
Ready to scale?

Scale your
impact.

Enterprise Ready
Direct Meta Sync
99.99% Uptime SLA

Join the elite circle of founders who have automated their scaling logic.

Secure your Competitive Advantage today.

No credit card required · Setup in under 5 minutes