Get Started
Integrate Channel Providers

Sdks Integration Guide

Complete step-by-step developer guide to connecting Sdks provider to HubNest.

1

1. Obtain Sdks Credentials

Log in to your Sdks developer portal to copy API access keys, secret tokens, and sender credentials.

Provider Authentication
All provider secrets are encrypted using Jasypt AES-256 field encryption before being stored in HubNest DB.
2

2. Configure Sdks in HubNest

Go to HubNest Dashboard > Integration Store, click Add Provider, and enter your credentials:

integrations/sdks.json
json
1{
2 "providerId": "sdks",
3 "enabled": true,
4 "credentials": {
5 "apiKey": "your_sdks_api_key",
6 "sender": "no-reply@yourdomain.com"
7 }
8}
3

3. Test Channel Delivery

Trigger a workflow step to verify message delivery:

terminal/test-channel.sh
bash
1curl -X POST "https://api.hubnest.io/api/v1/events" \
2 -H "Authorization: Bearer hn_live_8f3a91b2c4e567890abcdef123456789" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "eventName": "channel.test",
6 "to": { "subscriberId": "usr_test_01" }
7 }'
Was this guide helpful?