Innomar Imi Message API Help Page
Introduction
Innomar Imi Message API is used to send email, encrypted email or fax.
The
Innomar Imi Message API is used to send email, encrypted email or fax.
Innomar Email Fax API uses Owin OAuth Bearer Token for authorization. Please get token by:
POST {InnomarImiMessageAPIAPI_baseUrl}/Token
Parameters:
"username": {username}
"password": {password}
"grant_type": "password"
Response:
{access_token}
.NET Example
var restClient = new RestClient(InnomarImiMessageAPIAPI_baseUrl);
var restRequest = new RestRequest("token", Method.POST);
restRequest.AddParameter("username", InnomarImiMessageAPIAPI_userName);
restRequest.AddParameter("password", InnomarImiMessageAPIAPI_password);
restRequest.AddParameter("grant_type", "password");
var restReponse = restClient.Execute(restRequest);
if (restReponse.StatusCode == HttpStatusCode.OK)
{
dynamic rc = JsonConvert.DeserializeObject(restReponse.Content);
return rc.access_token;
}
else
{
return "Error: " + restReponse.Content;
}
Please contact Innomar Dev Team for InnomarImiMessageAPIAPI_baseUrl and user credentials.
ImiMsg
Send Email, Encrypted Email or Fax.
| API | Description |
| POST ImiStatus |
https:// TSmsStatusAPI.innomar-strategies.com/ImiNotify
|
| POST ImiMessage |
https:// TSmsStatusAPI.innomar-strategies.com/ImiNotify
|
| GET ImiTestGet |
No documentation available.
|