/**
  * Return the API uri.
  *
  * @return string
  */
 private static function getApiEndPoint()
 {
     if (null === self::$apiEndPoint) {
         self::$apiEndPoint = 'https://' . (self::isTestMode() ? 'sandbox-' : '') . 'api.everypay.gr';
     }
     return self::$apiEndPoint;
 }