From 8d863b077ccd9365c3a16d8f69c7c108a4d593cc Mon Sep 17 00:00:00 2001 From: Leeza Baidar Date: Tue, 5 Dec 2023 10:06:36 +0545 Subject: [PATCH] #updated errorcode --- JsonRx/Api/CustomerController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JsonRx/Api/CustomerController.cs b/JsonRx/Api/CustomerController.cs index 4c50966..08f6d06 100644 --- a/JsonRx/Api/CustomerController.cs +++ b/JsonRx/Api/CustomerController.cs @@ -113,7 +113,7 @@ namespace JsonRx.Api JsonRxResponse res = new JsonRxResponse(); if (string.IsNullOrEmpty(newUserRegister.UserId)) { - res.SetResponse("1", "Email is required!"); + res.SetResponse("100", "Email is required!"); return Ok(res); }