API PayPal требует TLS 1.2 для всех подключений
Для. Net 4.5 вы можете сделать
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
Для более ранних версий вы можете попробовать этот хак
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;