waitTime holds the HTTP request open waiting for a reply. followUpTime extends that window — but instead of holding the request open, it delivers late replies to your webhook.
The two parameters can work together, or you can use just one:
How it works
1
Message is sent
Poku sends the message to the recipient.
2
waitTime window opens
The HTTP request stays open. If the recipient replies, it’s returned immediately in the response and your agent continues with the received context.
3
waitTime expires
If no reply came in, your agent receives the no-response message and moves on.
4
followUpTime window opens
Poku continues listening in the background. If a reply arrives, it’s delivered to your webhook.
5
followUpTime expires
The channel closes. Any reply after this point is not captured.
Use case: manager replies after the call moves on
Your agent texts a manager mid-call asking about a customer’s car repair. The manager doesn’t reply in time, so the agent tells the customer no one is available. Ten minutes later, the manager replies — andfollowUpTime is still open.
Your webhook receives the reply, and you can:
- Text or email the customer with the manager’s response
- Trigger a follow-up call to the customer
- Log the response for your team
Webhook payload
When a reply arrives withinfollowUpTime, Poku sends a POST to your webhook:
“Hi John, the manager just got back to us — your Toyota Camry 2016 will be ready for pick-up on Thursday.”See the Webhook page for setup instructions.