GET edi?receiverEan={receiverEan}&pageSize={pageSize}

This method retrieves documents from the staging table, in order to be sent to the client

Request Information

URI Parameters

NameDescriptionTypeAdditional information
receiverEan

Validate Recipient EAN

string

Required

pageSize

Optional number of Document to be retrieved, this is automatically set to a maximun of 20 documents

integer

Default value is 20

Body Parameters

None.

Response Information

Resource Description

DocumentResponse
NameDescriptionTypeAdditional information
HttpStatusCode

integer

None.

Count

integer

None.

Message

string

None.

Documents

Collection of Document

None.

Response Formats

application/json, text/json

Sample:
{
  "HttpStatusCode": 1,
  "Count": 2,
  "Message": "sample string 3",
  "Documents": null
}

application/xml, text/xml

Sample:
<DocumentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMCGX.UniversalWebApi.Models">
  <Count>2</Count>
  <Documents i:nil="true" />
  <HttpStatusCode>1</HttpStatusCode>
  <Message>sample string 3</Message>
</DocumentResponse>