public async Task <NotificationLogResponse> ResendNotification(string notificationLogId)
 {
     notificationLogId = Uri.EscapeUriString(notificationLogId);
     return(await _serviceHelper.Put <NotificationLogResponse, object>(null, "notifications/logs/" + notificationLogId, overrideConfigSecretKey : _overrideConfigSecretKey));
 }
示例#2
0
        public async Task <GatewayItemResponse> Update(GatewayUpdateRequest request)
        {
            var gatewayid = Uri.EscapeUriString(request._id);

            return(await _serviceHelper.Put <GatewayItemResponse, GatewayUpdateRequest>(request, "gateways/" + gatewayid, overrideConfigSecretKey : _overrideConfigSecretKey));
        }