Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Closed

#86 #91

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/classes/crm/product/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,20 @@ public function getList($order = array(), $filter = array(), $select = array(),
return $fullResult;
}

/**
* get list of product fields with description
*
* @link https://dev.1c-bitrix.ru/rest_help/crm/products/crm_product_fields.php
*
* @return array
*/
public function fields()
{
return $this->client->call(
'crm.product.fields'
);
}

/**
* get product by id
*
Expand Down