Answer the question
In order to leave comments, you need to log in
How to get Bitrix 24 contact id from a deal?
There is a deal id, crm.deal.list methods are not suitable
Answer the question
In order to leave comments, you need to log in
BX24.callMethod('crm.deal.list', {
filter: {
ID: id,
},
select: ["CONTACT_ID"]
},
function(result)
{
$.ajax({
method: "POST",
url: "http://",
dataType: "json",
data: {idContact: result.data()},
success: function(data) {
console.log(data);
},
error: function(er) {
console.log(er);
}
});
}
);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question