GET internal/document/{documentId}/logicalmessage/list

Возвращает список логических сообщений по идентификатору документа.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
documentId

Идентификатор документа.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Список логических сообщений по идентификатору документа.

Collection of Korus.Eds.Api.LogicalMessageInfo
NameDescriptionTypeAdditional information
Id

integer

None.

TransportPackageId

integer

None.

Created

date

None.

Uuid

string

None.

TechnologicalReceiptId

integer

None.

Direction

Korus.Eds.Core.Direction

None.

TechnologicalReceiptType

Korus.Eds.Core.TechnologicalReceiptType

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "transportPackageId": 1,
    "created": "2025-04-29T16:40:21.0216896+03:00",
    "uuid": "sample string 2",
    "technologicalReceiptId": 1,
    "direction": 0,
    "technologicalReceiptType": 0,
    "errorMessage": "sample string 3"
  },
  {
    "id": 1,
    "transportPackageId": 1,
    "created": "2025-04-29T16:40:21.0216896+03:00",
    "uuid": "sample string 2",
    "technologicalReceiptId": 1,
    "direction": 0,
    "technologicalReceiptType": 0,
    "errorMessage": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLogicalMessageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api">
  <LogicalMessageInfo>
    <Created>2025-04-29T16:40:21.0216896+03:00</Created>
    <Direction>In</Direction>
    <ErrorMessage>sample string 3</ErrorMessage>
    <Id>1</Id>
    <TechnologicalReceiptId>1</TechnologicalReceiptId>
    <TechnologicalReceiptType>None</TechnologicalReceiptType>
    <TransportPackageId>1</TransportPackageId>
    <Uuid>sample string 2</Uuid>
  </LogicalMessageInfo>
  <LogicalMessageInfo>
    <Created>2025-04-29T16:40:21.0216896+03:00</Created>
    <Direction>In</Direction>
    <ErrorMessage>sample string 3</ErrorMessage>
    <Id>1</Id>
    <TechnologicalReceiptId>1</TechnologicalReceiptId>
    <TechnologicalReceiptType>None</TechnologicalReceiptType>
    <TransportPackageId>1</TransportPackageId>
    <Uuid>sample string 2</Uuid>
  </LogicalMessageInfo>
</ArrayOfLogicalMessageInfo>