catalog.section.update
Изменить раздел торгового каталога
Описание
Метод catalog.section.update изменяет раздел торгового каталога.
Параметры
id
catalog_section.id
обязательный
Идентификатор раздела каталога
fields
object
обязательный
Значения полей для обновления раздела каталога
Параметр fields
iblockId
catalog_catalog.id
обязательный
Идентификатор инфоблока.
Для получения существующих идентификаторов необходимо использовать catalog.catalog.list
iblockSectionId
catalog_section.id
необязательный
Идентификатор родительского раздела.
Для получения существующих идентификаторов необходимо использовать catalog.section.list
name
string
обязательный
Название раздела каталога
xmlId
string
необязательный
Внешний идентификатор.
Можно использовать для синхронизации текущего раздела каталога с аналогичной позицией во внешней системе
code
string
необязательный
Код раздела каталога. Должен быть уникальным
sort
integer
необязательный
Сортировка
active
string
необязательный
Индикатор активности раздела каталога:
- Y — активен
- N — неактивен
description
string
необязательный
Описание раздела каталога
descriptionType
string
необязательный
Тип описания. Доступные типы: text, html
Примеры запроса
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"id": 32,
"fields": {
"iblockId": 14,
"name": "Детские игрушки",
"description": "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
"descriptionType": "html"
}
}' \
https://**put_your_bitrix24_address**/rest/**put_your_user_id_here**/**put_your_webhook_here**/catalog.section.update
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"id": 32,
"fields": {
"iblockId": 14,
"name": "Детские игрушки",
"description": "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
"descriptionType": "html"
},
"auth": "**put_access_token_here**"
}' \
https://**put_your_bitrix24_address**/rest/catalog.section.update
// This snippet is an ES module: top-level await requires type="module" or a bundler.
// $b24 is an already-initialized SDK instance (see the SDK "Get started" guide).
import { Text } from '@bitrix24/b24jssdk'
import type { B24Frame } from '@bitrix24/b24jssdk'
declare const $b24: B24Frame
// Shape of the payload returned in result (match the "response handling" section of the page)
type CatalogSectionUpdateResult = {
section: {
active: string
code: string
description: string
descriptionType: string
iblockId: number
iblockSectionId: number
id: number
name: string
sort: number
xmlId: string
}
}
try {
const response = await $b24.actions.v2.call.make<CatalogSectionUpdateResult>({
method: 'catalog.section.update',
params: {
id: 32,
fields: {
iblockId: 14,
name: 'Toy products for children',
description: '<H1>Toy products for children</H1> <p>Products for kids</p>',
descriptionType: 'html',
},
},
requestId: Text.getUuidRfc4122()
})
// The payload is available only on a successful response
if (!response.isSuccess) {
console.error(response.getErrorMessages().join('; '))
} else {
const result = response.getData()!.result
console.info('Updated section:', result.section.id, result.section.name)
}
} catch (error) {
// Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
console.error(error)
}
<!-- Load the SDK (UMD build); it is exposed as the global B24Js -->
<script src="https://unpkg.com/@bitrix24/b24jssdk@1/dist/umd/index.min.js"></script>
<script>
async function updateCatalogSection() {
try {
// Initialize the SDK inside a Bitrix24 frame
const $b24 = await B24Js.initializeB24Frame()
const response = await $b24.actions.v2.call.make({
method: 'catalog.section.update',
params: {
id: 32,
fields: {
iblockId: 14,
name: 'Toy products for children',
description: '<H1>Toy products for children</H1> <p>Products for kids</p>',
descriptionType: 'html',
},
},
requestId: B24Js.Text.getUuidRfc4122()
})
// The payload is available only on a successful response
if (!response.isSuccess) {
console.error(response.getErrorMessages().join('; '))
return
}
const result = response.getData().result
console.info('Updated section:', result.section.id, result.section.name)
} catch (error) {
// Thrown on transport or SDK failures (AjaxError, SdkError, etc.)
console.error(error)
}
}
document.addEventListener('DOMContentLoaded', updateCatalogSection)
</script>
from b24pysdk.errors import BitrixAPIError, BitrixSDKException
try:
bitrix_response = client.catalog.section.update(
bitrix_id=32,
fields={
"iblockId": 14,
"name": "Детские игрушки",
},
).response
result = bitrix_response.result
print(result)
except BitrixAPIError as error:
print(
"Ошибка Bitrix API",
f"error: {error.error}",
f"error_description: {error.error_description}",
sep="\n",
)
except BitrixSDKException as error:
print(f"Ошибка Bitrix SDK: {error.message}")
except Exception as error:
print(f"Непредвиденная ошибка: {error}")
try {
$response = $b24Service
->core
->call(
'catalog.section.update',
[
'id' => 32,
'fields' => [
'iblockId' => 14,
'name' => 'Детские игрушки',
'description' => "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
'descriptionType' => "html",
],
]
);
$result = $response
->getResponseData()
->getResult();
echo 'Success: ' . print_r($result, true);
} catch (Throwable $e) {
error_log($e->getMessage());
echo 'Error updating catalog section: ' . $e->getMessage();
}
BX24.callMethod(
'catalog.section.update',
{
id: 32,
fields: {
iblockId: 14,
name: 'Детские игрушки',
description: "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
descriptionType: "html"
}
},
function(result)
{
if(result.error())
console.error(result.error());
else
console.log(result.data());
}
);
require_once('crest.php');
$result = CRest::call(
'catalog.section.update',
[
'id' => 32,
'fields' => [
'iblockId' => 14,
'name' => 'Детские игрушки',
'description' => '<H1>Детские игрушки</H1> <p>Товары для детей</p>',
'descriptionType' => 'html'
]
]
);
echo '<PRE>';
print_r($result);
echo '</PRE>';
// client и ctx уже созданы — см. раздел «SDK для Go»
res, err := client.Core().Call(ctx, "catalog.section.update", b24.Params{
"id": 32,
"fields": b24.Params{
"iblockId": 14,
"name": "Детские игрушки",
"description": "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
"descriptionType": "html",
},
})
if err != nil {
return fmt.Errorf("catalog.section.update: %w", err)
}
// Метод заворачивает ответ в объект с ключом "section".
raw, ok := b24.Unwrap(res.Result, "section")
if !ok {
return fmt.Errorf("в ответе нет ключа section")
}
var item struct {
Active string `json:"active"`
Code string `json:"code"`
Description string `json:"description"`
DescriptionType string `json:"descriptionType"`
IblockID b24.ID `json:"iblockId"`
IblockSectionID b24.ID `json:"iblockSectionId"`
}
if err := json.Unmarshal(raw, &item); err != nil {
return fmt.Errorf("разбор ответа: %w", err)
}
fmt.Println(item.Active, item.Code)
Ответ
HTTP-статус: 200
{
"result": {
"section": {
"active": "Y",
"code": "toys1",
"description": "<H1>Детские игрушки</H1> <p>Товары для детей</p>",
"descriptionType": "html",
"iblockId": 14,
"iblockSectionId": 13,
"id": 32,
"name": "Детские игрушки",
"sort": 100,
"xmlId": "myXmlId"
}
},
"time": {
"start": 1712327086.69665,
"finish": 1712327086.95303,
"duration": 0.256376028060913,
"processing": 0.0112268924713135,
"date_start": "2024-04-05T16:24:46+02:00",
"date_finish": "2024-04-05T16:24:46+02:00",
"operating": 0
}
}
Возвращаемые данные
result
object
Корневой элемент ответа
section
catalog_section
Объект с информацией об обновленном разделе каталога
time
time
Информация о времени выполнения запроса
Обработка ошибок
HTTP-статус: 400
{
"error":0,
"error_description":"Required fields: name"
}
| Код | Описание | Значение |
|---|---|---|
200040300040 |
Нет доступа к редактированию | |
200700300010 |
Ошибки при обновлении, например, идентификатор инфоблока обновляемого раздела не совпадает с идентификатором инфоблока раздела-родителя | |
200700300030 |
Раздела каталога с таким идентификатором не существует | |
200700300040 |
Нарушение уникальности поля code |
|
200700300050 |
Инфоблока с заданным iblockId не существует |
|
100 |
Не указан параметр id |
|
100 |
Не указан или пустой параметр fields |
|
0 |
Не переданы обязательные поля структуры fields |
|
0 |
Другие ошибки (например, фатальные ошибки) |

