GoHighLevel Integration
Connecting your GoHighLevel agency account to IQ NumberHub allows you to route inbound texts directly into your GHL conversations tab.
- Log into the IQ NumberHub dashboard.
- Navigate to Integrations -> GoHighLevel.
- Click Connect Agency. You will be redirected to the GoHighLevel OAuth screen.
- Authorize the application.
- Once redirected back, map your purchased numbers to your respective GHL sub-accounts.
Textstream.ai Delivery
Textstream.ai allows you to build conversational AI agents. IQ NumberHub provides the telecommunications backbone to give those agents real phone numbers.
- Obtain your Textstream API Key from your Textstream.ai dashboard.
- In IQ NumberHub, go to the settings for your specific phone number.
- Under Routing Mode, select Textstream AI Agent.
- Paste your Textstream API Key and select the specific Agent ID you wish to connect.
- Send a test text to your number to watch the AI agent reply in real-time!
Custom Webhook Servers (Node.js)
If you are building a custom backend, here is a quick example of an Express route handling an inbound message:
app.post('/webhook/inbound-sms', (req, res) => {
const { from, to, body } = req.body;
console.log(`Received message from ${from}: ${body}`);
// Return 200 OK immediately to acknowledge receipt
res.status(200).send('OK');
});