For AI agents: markdown of this page — /docs-content-en/entities/items/products-get.md documentation index — /llms.txt
Item product rows
GET /v1/items/:entityTypeId/:id/products
Returns the list of product rows attached to a smart process item.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
entityTypeId (path) |
number | yes | Smart process type ID |
id (path) |
number | yes | Item ID |
limit (query) |
number | no | How many rows to return per call, from 1 to 5000, 50 by default. A value above 5000 is clamped to 5000. limit=0 is not a page size: the default applies and meta.warnings carries an entry with code LIMIT_ZERO_IGNORED |
offset (query) |
number | no | Offset in rows, not in pages: offset=7 starts the output at the eighth row |
Without limit and offset the endpoint returns the first page of results. meta.hasMore tells you whether rows exist beyond it, and meta.total how many the item has in total.
Examples
curl — personal key
curl "https://vibecode.bitrix24.com/v1/items/156/741/products" \
-H "X-Api-Key: YOUR_API_KEY"
curl — OAuth application
curl "https://vibecode.bitrix24.com/v1/items/156/741/products" \
-H "X-Api-Key: YOUR_APP_KEY" \
-H "Authorization: Bearer USER_SESSION_TOKEN"
JavaScript — personal key
const res = await fetch('https://vibecode.bitrix24.com/v1/items/156/741/products', {
headers: {
'X-Api-Key': 'YOUR_API_KEY',
},
})
const { success, data } = await res.json()
console.log('Products:', data.length)
JavaScript — OAuth application
const res = await fetch('https://vibecode.bitrix24.com/v1/items/156/741/products', {
headers: {
'X-Api-Key': 'YOUR_APP_KEY',
'Authorization': 'Bearer USER_SESSION_TOKEN',
},
})
const { success, data } = await res.json()
Response fields
| Field | Type | Description |
|---|---|---|
success |
boolean | Always true on success |
data |
array | Array of product rows |
data[].id |
number | Product row ID. The same value appears as rowId in single-row operations |
data[].productId |
number | Product ID. Catalog: GET /v1/products |
data[].productName |
string | Product name |
data[].price |
number | Unit price |
data[].quantity |
number | Quantity |
data[].discount |
number | Discount amount |
data[].taxRate |
number/null | Tax rate (%) |
data[].taxIncluded |
boolean | Tax included in the price |
data[].ownerId |
number | ID of the owning smart process item, the same one as in the request path |
data[].ownerType |
string | Row owner type: the letter T plus the hexadecimal entityTypeId, T9c for type 156 |
data[].storeId |
number | null | Warehouse ID. List: GET /v1/warehouses. null when inventory management is off |
meta.total |
number | How many product rows the smart process item has in total. Present when Bitrix24 returned the count, otherwise the field is absent from the response. |
meta.hasMore |
boolean | Whether rows exist beyond the returned page. Correct for any requested window, not only the first one |
meta.warnings |
array | Present only when the request carried limit=0: a single entry with code equal to LIMIT_ZERO_IGNORED |
The main fields are shown. Full list — Product fields.
Response example
{
"success": true,
"data": [
{
"id": 1671,
"ownerId": 741,
"ownerType": "T9c",
"productId": 1,
"productName": "Server equipment",
"price": 1000,
"quantity": 2,
"discount": 0,
"taxRate": null,
"taxIncluded": false,
"storeId": null
}
],
"meta": {
"total": 1,
"hasMore": false
}
}
Error response example
404 — item not found:
{
"success": false,
"error": {
"code": "ENTITY_NOT_FOUND",
"message": "Item not found"
}
}
Errors
| HTTP | Code | Description |
|---|---|---|
| 400 | INVALID_DYNAMIC_PARAM |
entityTypeId is not a positive integer or is reserved (1, 2, 3, 4, 7, 31) |
| 404 | ENTITY_NOT_FOUND |
Item not found |
| 403 | SCOPE_DENIED |
The API key lacks the crm scope |
| 401 | TOKEN_MISSING |
The API key has no configured tokens |
| 429 | RATE_LIMITED |
Rate limit exceeded: 300 requests per minute per portal, all API keys of the portal share one limit. The exact value arrives in the x-ratelimit-limit header (the cap is divided across replicas). Retry after the delay in the Retry-After header |
Full list of common API errors — Errors.