Переменные
Список переменных
GET
https://app.hightouch.ai/api/store/custom_fields/
Query Parameters
Name | Type | Description |
---|---|---|
shop_id | integer | ID магазина |
limit | integer | Кол-во записей (макс. 100) |
offset | integer | Сдвиг по записям |
search | string | Строка поиска по названию или ID переменной |
Добавить новую переменную
POST
https://app.hightouch.ai/api/store/custom_fields/
Переменные бывают следующих типов:
text
- строка;
number
- целое или дробное число;
bool
- булевый тип ("Да/Нет");
image
- сохраняет в себе URL картинки;
json
- сохраняет в себе JSON-объект произвольной структуры;
Request Body
Name | Type | Description |
---|---|---|
shop_id | integer | ID магазина |
name | string | Название переменной (латиницей) |
dtype | object | Тип данных. Например, |
description | string | Описание переменной |
Изменить переменную
PATCH
https://app.hightouch.ai/api/store/custom_fields/:id/
Path Parameters
Name | Type | Description |
---|---|---|
id | integer | ID переменной |
Request Body
Name | Type | Description |
---|---|---|
shop_id | integer | ID магазина |
name | string | Новое имя переменной |
description | string | Новое описание переменной |
Удалить переменную
DELETE
https://app.hightouch.ai/api/store/custom_fields/:id/
Path Parameters
Name | Type | Description |
---|---|---|
id | integer | ID переменной |
Última actualización