public async Task <(bool, string)> CreateNewEmptyNeblioAccount([FromBody] CreateNewEmptyAccountDto data)
        {
            try
            {
                var res = await AccountHandler.AddEmptyNeblioAccount(data.adminCredentials, data.address, MainDataContext.IsAPIWithCredentials);

                if (res)
                {
                    return(true, "OK");
                }
                else
                {
                    return(false, "Cannot add new account.");
                }
            }
            catch (Exception ex)
            {
                throw new HttpResponseException((HttpStatusCode)501, $"Cannot Add new empty neblio account!" + ex.Message);
            }
        }