crm.company.contact.items.get
Scope: catalog Permissions to execute: for all
crm.company.contact.items.get(id)
The method returns set of contacts, binded to the specified company.
Parameters
Parameter | Description |
---|---|
id | Company ID. |
The result is returned as an array of objects, each containing the following [link=8143023]fields[/link]:
Field | Description |
---|---|
CONTACT_ID | Contact ID |
SORT | Sorting index |
ROLE_ID | Role ID (reserved) |
IS_PRIMARY | Primary contact flag |
Example of call
var id = prompt("Enter ID"); BX24.callMethod( "crm.company.contact.items.get", { id: id }, function(result) { if(result.error()) console.error(result.error()); else console.dir(result.data()); } );
© «Bitrix24», 2001-2024