GET api/inventory_pack_components?OnDate={OnDate}
Набор записей о массово-весовых характеристиках товарных упаковок. Содержит сведения, введенные или измененные, начиная с даты OnDate
Описание запроса (Request).
Параметры адресной строки (URI Parameters)
Название параметра | Описание | Тип | Примечание |
---|---|---|---|
OnDate |
Дата создания/обновления информации. Допустимы значения в формате "d.M.yy", "d.M.yyyy", "dd.MM.yy", "dd.MM.yyyy", "d/M/yy", "d/M/yyyy", "dd/MM/yy", "dd/MM/yyyy", "yyyy-MM-dd". |
string |
Обязательный атрибут |
Описание ответа (Response)
Collection of inventory_pack_componentsНазвание параметра | Описание | Тип | Примечание |
---|---|---|---|
id | integer | ||
packing_id | integer | ||
pack_dosage | string |
Длина строки: 128 |
|
sign | string |
Длина строки: 3 |
|
value | decimal number | ||
unit_id | integer | ||
unit_short_name | string |
Длина строки: 20 |
|
alternative | integer | ||
num | integer | ||
whole_num | integer | ||
actdate | date |
Форматы ответа (Response Formats)
application/json, text/json
Sample:
[ { "packing_id": 2, "pack_dosage": "sample string 3", "sign": "sample string 4", "value": 1.0, "unit_id": 1, "unit_short_name": "sample string 5", "alternative": 1, "num": 1, "whole_num": 1, "actdate": "2024-11-21T11:52:46.6978764+03:00" }, { "packing_id": 2, "pack_dosage": "sample string 3", "sign": "sample string 4", "value": 1.0, "unit_id": 1, "unit_short_name": "sample string 5", "alternative": 1, "num": 1, "whole_num": 1, "actdate": "2024-11-21T11:52:46.6978764+03:00" } ]
application/xml, text/xml
Sample:
<ArrayOfInventory_pack_components xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <inventory_pack_components> <packing_id>2</packing_id> <pack_dosage>sample string 3</pack_dosage> <sign>sample string 4</sign> <value>1</value> <unit_id>1</unit_id> <unit_short_name>sample string 5</unit_short_name> <alternative>1</alternative> <num>1</num> <whole_num>1</whole_num> <actdate>2024-11-21T11:52:46.6978764+03:00</actdate> </inventory_pack_components> <inventory_pack_components> <packing_id>2</packing_id> <pack_dosage>sample string 3</pack_dosage> <sign>sample string 4</sign> <value>1</value> <unit_id>1</unit_id> <unit_short_name>sample string 5</unit_short_name> <alternative>1</alternative> <num>1</num> <whole_num>1</whole_num> <actdate>2024-11-21T11:52:46.6978764+03:00</actdate> </inventory_pack_components> </ArrayOfInventory_pack_components>