POST api/goods/NomenclatureSpeciesListPagingInfo

Получение всех списков видов номенклатуры в товарном каталоге, с входными фильтрами и пагинацией

Request Information

URI Parameters

None.

Body Parameters

NomenclatureSpeciesListPagingInfoRequest
NameDescriptionTypeAdditional information
PosCode

Код торговой точки пользователя

string

None.

Name

Входной фильтр: наименование списка

string

None.

SpeciesList

Входной фильтр: идентификатор списка

integer

None.

Active

Входной фильтр: активность списка

boolean

None.

Start

Пагинация: номер записи, от которой показывать записи, включая указанную

integer

None.

Length

Пагинация: позиция от которой показывать записи, включая указанную

integer

None.

Operator

Идентификатор оператора программы лояльности

integer

None.

Token

Токен пользователя, который инициирует данный запрос

integer

None.

SiteCode

Уникальный код виджета по продаже подарочных сертификатов, который инициирует запрос

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PosCode": "sample string 1",
  "Name": "sample string 2",
  "SpeciesList": 1,
  "Active": true,
  "Start": 1,
  "Length": 1,
  "Operator": 1,
  "Token": 1,
  "SiteCode": "sample string 3"
}

application/xml, text/xml

Sample:
<NomenclatureSpeciesListPagingInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Request.GoodsRequest">
  <Operator xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Abstractions">1</Operator>
  <SiteCode xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Abstractions">sample string 3</SiteCode>
  <Token xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Abstractions">1</Token>
  <Active>true</Active>
  <Length>1</Length>
  <Name>sample string 2</Name>
  <PosCode>sample string 1</PosCode>
  <SpeciesList>1</SpeciesList>
  <Start>1</Start>
</NomenclatureSpeciesListPagingInfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NomenclatureSpeciesListPagingInfoResponse
NameDescriptionTypeAdditional information
TotalRows

Количество записей всего

integer

None.

TotalRowsSelect

Количество записей в запросе

integer

None.

Data

Массив

Collection of NomenclatureSpeciesListPagingInfoDataRow

None.

ErrorCode

Код ошибки

integer

None.

Message

Сообщение об ошибке

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalRows": 1,
  "TotalRowsSelect": 1,
  "Data": [
    {
      "Id": 1,
      "SpeciesList": 1,
      "Name": "sample string 1",
      "ProcTime": "2025-06-21T11:40:30.6916654+03:00",
      "NoActive": true,
      "CountPosition": 1
    },
    {
      "Id": 1,
      "SpeciesList": 1,
      "Name": "sample string 1",
      "ProcTime": "2025-06-21T11:40:30.6916654+03:00",
      "NoActive": true,
      "CountPosition": 1
    }
  ],
  "ErrorCode": 1,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<NomenclatureSpeciesListPagingInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Response.GoodsResponse">
  <ErrorCode xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Abstractions">1</ErrorCode>
  <Message xmlns="http://schemas.datacontract.org/2004/07/LCManagerPartner.Implementation.Abstractions">sample string 2</Message>
  <Data>
    <NomenclatureSpeciesListPagingInfoResponse.NomenclatureSpeciesListPagingInfoDataRow>
      <CountPosition>1</CountPosition>
      <Id>1</Id>
      <Name>sample string 1</Name>
      <NoActive>true</NoActive>
      <ProcTime>2025-06-21T11:40:30.6916654+03:00</ProcTime>
      <SpeciesList>1</SpeciesList>
    </NomenclatureSpeciesListPagingInfoResponse.NomenclatureSpeciesListPagingInfoDataRow>
    <NomenclatureSpeciesListPagingInfoResponse.NomenclatureSpeciesListPagingInfoDataRow>
      <CountPosition>1</CountPosition>
      <Id>1</Id>
      <Name>sample string 1</Name>
      <NoActive>true</NoActive>
      <ProcTime>2025-06-21T11:40:30.6916654+03:00</ProcTime>
      <SpeciesList>1</SpeciesList>
    </NomenclatureSpeciesListPagingInfoResponse.NomenclatureSpeciesListPagingInfoDataRow>
  </Data>
  <TotalRows>1</TotalRows>
  <TotalRowsSelect>1</TotalRowsSelect>
</NomenclatureSpeciesListPagingInfoResponse>