Перейти к основному содержимому

Поиск по групповым соглашениям

Метод предназначен для поиска по групповым соглашениям с возможностью задавать набор полей в ответе и порядок сортировки элементов.

Request Body required

request

    countFrom int32
    countTo int32
    fields string[]
    ids int64[]
    orderBy string
    orderByFields object[]
  • Array [
  • direction string
    field string
  • ]
  • orderDirection string
    resultsQty int32
    searchFields object[]
  • Array [
  • field string
    ornumber string
    value string
  • ]
Responses

OK


Schema
  • Array [
  • fields object
    id int64
  • ]
POST /main/group-conventions/partial-load

Request

Base URL
//localhost
Body required
{
"countFrom": 0,
"countTo": 0,
"fields": [
"string"
],
"ids": [
0
],
"orderBy": "string",
"orderByFields": [
{
"direction": "string",
"field": "string"
}
],
"orderDirection": "string",
"resultsQty": 0,
"searchFields": [
{
"field": "string",
"ornumber": "string",
"value": "string"
}
]
}
curl / cURL
curl -L -X POST '//localhost/main/group-conventions/partial-load' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"countFrom": 0,
"countTo": 0,
"fields": [
"string"
],
"ids": [
0
],
"orderBy": "string",
"orderByFields": [
{
"direction": "string",
"field": "string"
}
],
"orderDirection": "string",
"resultsQty": 0,
"searchFields": [
{
"field": "string",
"ornumber": "string",
"value": "string"
}
]
}'