ШН
Size: a a a
ШН
DT
ШН
OB
PР
OB
d
B
AK
ZS
И
ВЧ
AT
B
mm
KM
ZS
DC
DC
$ch = curl_init();
curl_setopt(
$ch,
CURLOPT_URL,
'https://fenomen.s20.online/api/1/lead/create?token=token'
);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
'name' => 'Иван Иванов',
'phone' => '+79133788567',
'email' => 'ivan.ivanov@mail.ru',
'skype' => 'ivan.ivanov',
'source' => 'utm-source-sample',
'note' => 'Sample note',
]));
curl_exec($ch);
curl_close($ch);