For AI agents: markdown of this page — /docs-content-en/entities/items/products-get.md documentation index — /llms.txt
Item product lines
GET /v1/items/:entityTypeId/:id/products
Returns the list of product lines bound to a smart-process item.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
entityTypeId (path) |
number | yes | Smart process type ID |
id (path) |
number | yes | Item ID |
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 |
|---|---|---|
data |
array | Array of product lines |
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 price |
Main fields shown. Full list — Product fields.
Response example
{
"success": true,
"data": [
{
"productId": 1,
"productName": "Server hardware",
"price": 1000,
"quantity": 2,
"discount": 0,
"taxRate": null,
"taxIncluded": 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 |
Full list of common API errors — Errors.