GET internal/transportpackage/{id}/replicateinfo

Получает информацию по идентификатору транспортного пакета.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Идентификатор транспортного пакета.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Информация по идентификатору транспортного пакета.

Collection of Korus.Eds.Api.TransportPackageReplicateInfo
NameDescriptionTypeAdditional information
TransportDocumentId

integer

None.

DocumentId

integer

None.

Uuid

string

None.

FileId

string

None.

LogicalMessageUuid

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "transportDocumentId": 1,
    "documentId": 2,
    "uuid": "sample string 3",
    "fileId": "sample string 4",
    "logicalMessageUuid": "sample string 5"
  },
  {
    "transportDocumentId": 1,
    "documentId": 2,
    "uuid": "sample string 3",
    "fileId": "sample string 4",
    "logicalMessageUuid": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransportPackageReplicateInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api">
  <TransportPackageReplicateInfo>
    <DocumentId>2</DocumentId>
    <FileId>sample string 4</FileId>
    <LogicalMessageUuid>sample string 5</LogicalMessageUuid>
    <TransportDocumentId>1</TransportDocumentId>
    <Uuid>sample string 3</Uuid>
  </TransportPackageReplicateInfo>
  <TransportPackageReplicateInfo>
    <DocumentId>2</DocumentId>
    <FileId>sample string 4</FileId>
    <LogicalMessageUuid>sample string 5</LogicalMessageUuid>
    <TransportDocumentId>1</TransportDocumentId>
    <Uuid>sample string 3</Uuid>
  </TransportPackageReplicateInfo>
</ArrayOfTransportPackageReplicateInfo>