1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00
Files
OpenIntegrations/docs/en/examples/Bitrix24/UpdateLead.txt
T

19 lines
681 B
Plaintext
Raw Normal View History

FieldsStructure = New Structure;
FieldsStructure.Insert("ADDRESS" , "Lermontov st., b. 20");
FieldsStructure.Insert("ADDRESS_COUNTRY", "Belarus");
FieldsStructure.Insert("TITLE" , "SuperClient");
2024-11-02 22:50:30 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/yg2...";
2024-11-11 22:11:22 +03:00
LeadID = "700";
Result = OPI_Bitrix24.UpdateLead(URL, LeadID, FieldsStructure);
FieldsStructure.Insert("NAME" , "Evgeniy");
FieldsStructure.Insert("LAST_NAME" , "Evgeniev");
2024-09-21 10:57:02 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-11-11 22:11:22 +03:00
Token = "48573267006e9f06006b12e400000001000...";
LeadID = "702";
Result = OPI_Bitrix24.UpdateLead(URL, LeadID, FieldsStructure, Token);