Documentation

crm.status.list

Scope: catalog Permissions to execute: for all

crm.status.list()

Return a list of filtered directory elements. This is the implementation of the list method for directory elements. Please note that parameters Select and Navigation are not supported.

Parameters

See description of list methods.

Example

 BX24.callMethod(
  "crm.status.list", 
  { 
   order: {"SORT": "ASC"},
   filter: {"ENTITY_ID": "STATUS"}
  }, 
  function(result) 
  {
   if(result.error())
    console.error(result.error());
   else
   {
    console.dir(result.data());   
    if(result.more())
     result.next();      
   }
  }
 ); 


© «Bitrix24», 2001-2024