Get a List of Estimates by Filter crm.quote.list
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.
Scope:
crmWho can execute the method: a user with "read" access permission for estimates
DEPRECATED
Development of this method has been halted. Please use crm.item.list.
The method crm.quote.list returns a list of estimates based on a filter.
This method implements the list method for estimates.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
select |
A list of fields to return in the response. You can use masks for selection:
A list of available fields for selection can be obtained using the crm.quote.fields method. By default, all standard fields and custom fields are returned ( |
|
filter |
An object in the format:
where:
The filter key format: Supported operators:
For
A list of available fields for filtering can be obtained using the crm.quote.fields method |
|
order |
An object in the format:
where:
A list of available fields for sorting can be obtained using the crm.quote.fields method. When sorting by |
|
start |
Pagination parameter. Page size — Formula:
|
Code Examples
How to Use Examples in Documentation
Select estimates:
- for the company with
COMPANY_ID = 1, - with the stage
SENT, - sorted by stage and ID,
- selecting fields:
ID,TITLE,STATUS_ID,OPPORTUNITY,CURRENCY_ID,ASSIGNED_BY_ID.
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"order":{"STATUS_ID":"ASC","ID":"ASC"},"filter":{"=COMPANY_ID":1,"=STATUS_ID":"SENT"},"select":["ID","TITLE","STATUS_ID","OPPORTUNITY","CURRENCY_ID","ASSIGNED_BY_ID"]}' \
https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/crm.quote.list
curl -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"order":{"STATUS_ID":"ASC","ID":"ASC"},"filter":{"=COMPANY_ID":1,"=STATUS_ID":"SENT"},"select":["ID","TITLE","STATUS_ID","OPPORTUNITY","CURRENCY_ID","ASSIGNED_BY_ID"],"auth":"**put_access_token_here**"}' \
https://**put_your_bitrix24_address**/rest/crm.quote.list
try {
await $b24.callListMethod(
'crm.quote.list',
{
order: { STATUS_ID: 'ASC', ID: 'ASC' },
filter: { '=COMPANY_ID': 1, '=STATUS_ID': 'SENT' },
select: ['ID', 'TITLE', 'STATUS_ID', 'OPPORTUNITY', 'CURRENCY_ID', 'ASSIGNED_BY_ID'],
},
(progress) => {
progress.error()
? console.error(progress.error())
: console.info(progress.data())
;
},
);
} catch (error) {
console.error('Request failed', error);
}
try {
const generator = $b24.fetchListMethod(
'crm.quote.list',
{
order: { STATUS_ID: 'ASC', ID: 'ASC' },
filter: { '=COMPANY_ID': 1, '=STATUS_ID': 'SENT' },
select: ['ID', 'TITLE', 'STATUS_ID', 'OPPORTUNITY', 'CURRENCY_ID', 'ASSIGNED_BY_ID'],
},
'ID',
);
for await (const page of generator) {
for (const entity of page) {
console.info(entity);
}
}
} catch (error) {
console.error('Request failed', error);
}
try {
const response = await $b24.callMethod(
'crm.quote.list',
{
order: { STATUS_ID: 'ASC', ID: 'ASC' },
filter: { '=COMPANY_ID': 1, '=STATUS_ID': 'SENT' },
select: ['ID', 'TITLE', 'STATUS_ID', 'OPPORTUNITY', 'CURRENCY_ID', 'ASSIGNED_BY_ID'],
start: 0,
},
);
const result = response.getData().result || [];
console.info(result);
} catch (error) {
console.error('Request failed', error);
}
try {
$response = $b24Service
->core
->call(
'crm.quote.list',
[
'order' => [
'STATUS_ID' => 'ASC',
'ID' => 'ASC',
],
'filter' => [
'=COMPANY_ID' => 1,
'=STATUS_ID' => 'SENT',
],
'select' => [
'ID',
'TITLE',
'STATUS_ID',
'OPPORTUNITY',
'CURRENCY_ID',
'ASSIGNED_BY_ID',
],
]
);
$result = $response
->getResponseData()
->getResult();
echo '<pre>';
print_r($result);
echo '</pre>';
} catch (Throwable $e) {
error_log($e->getMessage());
echo 'Error fetching quote list: ' . $e->getMessage();
}
BX24.callMethod(
'crm.quote.list',
{
order: { STATUS_ID: 'ASC', ID: 'ASC' },
filter: { '=COMPANY_ID': 1, '=STATUS_ID': 'SENT' },
select: ['ID', 'TITLE', 'STATUS_ID', 'OPPORTUNITY', 'CURRENCY_ID', 'ASSIGNED_BY_ID'],
},
(result) => {
result.error()
? console.error(result.error())
: console.info(result.data())
;
},
);
require_once('crest.php');
$result = CRest::call(
'crm.quote.list',
[
'order' => [
'STATUS_ID' => 'ASC',
'ID' => 'ASC',
],
'filter' => [
'=COMPANY_ID' => 1,
'=STATUS_ID' => 'SENT',
],
'select' => [
'ID',
'TITLE',
'STATUS_ID',
'OPPORTUNITY',
'CURRENCY_ID',
'ASSIGNED_BY_ID',
],
]
);
echo '<PRE>';
print_r($result);
echo '</PRE>';
Response Handling
HTTP Status: 200
{
"result": [
{
"ID": "9",
"TITLE": "Latest version of our product",
"STATUS_ID": "SENT",
"OPPORTUNITY": "45000.00",
"CURRENCY_ID": "USD",
"ASSIGNED_BY_ID": "7"
},
{
"ID": "43",
"TITLE": "Estimate for furniture supply",
"STATUS_ID": "SENT",
"OPPORTUNITY": "150000.00",
"CURRENCY_ID": "USD",
"ASSIGNED_BY_ID": "1"
}
],
"total": 2,
"time": {
"start": 1773413037,
"finish": 1773413037.105712,
"duration": 0.1057119369506836,
"processing": 0,
"date_start": "2026-03-13T17:43:57+01:00",
"date_finish": "2026-03-13T17:43:57+01:00",
"operating_reset_at": 1773413637,
"operating": 0
}
}
Returned Data
|
Name |
Description |
|
result |
An array of estimates. The composition of fields depends on the |
|
total |
The total number of records found |
|
next |
The value for the The |
|
time |
Information about the execution time of the request |
Error Handling
HTTP Status: 400
{
"error": "",
"error_description": "Access denied."
}
|
Name |
Description |
|
error |
String error code. It may consist of digits, Latin letters, and underscores |
|
error_description |
Textual description of the error. The description is not intended to be shown to the end user in its raw form |
Possible Error Codes
|
Code |
Description |
Value |
|
|
|
An object was not passed in |
|
|
|
An object was not passed in |
|
|
|
The user does not have permission to read estimates |
|
|
|
General error executing the request |
Statuses and System Error Codes
HTTP Status: 20x, 40x, 50x
The errors described below may occur when calling any method.
|
Status |
Code |
Description |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
An internal server error has occurred. Please contact the server administrator or Bitrix24 technical support |
|
|
|
The request intensity limit has been exceeded |
|
|
|
The current method is not permitted for calls using batch |
|
|
|
The maximum length of parameters passed to the batch method has been exceeded |
|
|
|
Invalid access token or webhook code |
|
|
|
The HTTPS protocol is required for method calls |
|
|
|
The REST API is blocked due to overload. This is a manual individual block; please contact Bitrix24 technical support to lift it |
|
|
|
The REST API is only available on commercial plans |
|
|
|
The user associated with the access token or webhook used to call the method lacks the necessary permissions |
|
|
|
The manifest is not available |
|
|
|
The request requires higher privileges than those provided by the webhook token |
|
|
|
The provided access token has expired |
|
|
|
The user does not have access to the application. This means that the application is installed, but the portal administrator has restricted access to this application to specific users only |
|
|
|
The public part of the site is closed. To open the public part of the site on an on-premise installation, disable the "Temporary closure of the public part of the site" option. Path to the setting: Desktop > Settings > Product Settings > Module Settings > Main Module > Temporary closure of the public part of the site |
Continue Learning
- Add Estimate crm.quote.add
- Update Estimate crm.quote.update
- Get Estimate by ID: crm.quote.get
- Delete Estimate crm.quote.delete
- Get Fields of the Estimate crm.quote.fields