Documentation Index
Fetch the complete documentation index at: https://docs.pokulabs.com/llms.txt
Use this file to discover all available pages before exploring further.
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:
| Parameter | What it does | Where the reply goes |
|---|---|---|
waitTime | Holds the request open for N seconds | HTTP response |
followUpTime | Keeps listening for N seconds after waitTime closes | Your webhook |
How it works
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.
followUpTime window opens
Poku continues listening in the background. If a reply arrives, it’s delivered to your webhook.
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.
