• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/sender/sms/twilio.php
  • Класс: BitrixMessageServiceSenderSmsTwilio
  • Вызов: Twilio::getRequestUrl
private function getRequestUrl(string $apiMethod): string
{
	$url = Option::get(
		'messageservice',
		'twilio_api_uri_tpl',
		'https://api.twilio.com/2010-04-01/%apiMethod%.json'
	);

	return str_replace('%apiMethod%', $apiMethod, $url);
}