API Integration
Before you can integrate or access any of our APIs, you must first register your business and create a NodeClient. ( For complete guide visit Full Documentation )
NodeClient
NodeClient is an application deployed locally in your environment to encrypt the outbound message from business end before it leaves your network and dispatched to our centralised routing server.
Lets Say Your On-Prem instance is available at
https://nodeclient.yourcompany.com
API URL
https://nodeclient.yourcompany.com/entoc/send
For On-Cloud NodeClient API URL
https://<CLIENT_ID>.otpalerts.com/entoc/send
Communication
BusinessApplication → NodeClient → RoutingServer → Customer
Authorization
Currently, there is only 1 method of authorization available.
- API KEY (To create API Key Visit )
Every request to the NodeClient needs to be authorized using an API Key authentication. Adding x-api-key in the header with your unique API Key as a value will grant access. Example for POST request with curl:
curl \
-H "x-api-key: " \
-X POST \
https://nodeclient.yourcompany.com/entoc/send \
-H "Accept: application/json"
...