public IHttpActionResult Post([FromBody] JObject value)
 {
     if (IdentityAccessService.IsThingAuthorized(Request, out long organizationOut, out long identityOut, out long digitalTwinModelOut))
     {
         var result = telemetryService.CreateTelemetry(value, identityOut, organizationOut, digitalTwinModelOut);
         if (result == null)
         {
             return(NotFound());
         }
         else
         {
             return(Ok(result));
         }
     }