public void DelCallerID()
        {
            // Delete the callerID 1.

            try {
                var voximplant = new VoximplantAPI();

                var result = voximplant.DelCallerID(
                    calleridId: 1L
                    ).Result;

                Console.WriteLine($"Response: {result.ToString()}");
            } catch (Exception e) {
                Console.WriteLine($"Error: {e.Message}");
            }
        }