crm.activity.list
Returns a list of activities selected by the filter specified as the parameter (to return COMMUNICATIONS, it needs to be specified when performing selection). See the example for the filter notation.
Parameters
See the list method reference for the parameters.
Example
We receive list of contact activities with ID 102 in this example.
BX24.callMethod( "crm.activity.list", { order:{ "ID": "DESC" }, filter: { "OWNER_TYPE_ID": 3, "OWNER_ID": 102 }, select:[ "*", "COMMUNICATIONS" ] }, function(result) { if(result.error()) console.error(result.error()); else { console.dir(result.data()); if(result.more()) result.next(); } } );
© «Bitrix Inc.»,
2001-2021,
«Bitrix Inc.», 2021
User Comments
User comments are not part of official documentation. Use information provided by other users in the comments at your own risk.The User Comments section is not to be used as a feature discussion board. Only registered users can post comments. Your comment will be visible once it has been approved by the moderator.