+ +
+ +To invoke the server API pass the API key in a HttpHeader called X-Api-Key. Use the shared secret to calculate a HMAC signature on the HTTP Request body and include it in the http header X-Api-Signature.
var hmac = new HMACSHA256(Encoding.UTF8.GetBytes(_sharedSecret));
+var hash = hmac.ComputeHash(httpBodyAsByteArray);
+var signature = Convert.ToBase64String(hash);
+
+
+ To invoke the server API pass the API key in a HttpHeader called X-Api-Key. Use the shared secret to calculate a HMAC signature on the HTTP Request body and include it in the http header X-Api-Signature.
+
The key is authorized to modify the following applications:
+var hmac = new HMACSHA256(Encoding.UTF8.GetBytes(_sharedSecret));
+var hash = hmac.ComputeHash(httpBodyAsByteArray);
+var signature = Convert.ToBase64String(hash);
+
+ + Api keys are used when communicating with OneTrueError through the API. +
+ Create a new key +- OneTrueError can send email notifcations upon different types of events (and password resets etc). To do this, we need + OneTrueError can send email notifications upon different types of events (and password resets etc). To do this, we need to have a SMTP account for mailing.