public static async Task Register(ProfileData _toRegister)
        {
            PushResponse response = await Client.PushAsync("credentials", _toRegister);

            Console.WriteLine(response.Result.name);
        }