POST api/ReportExecutor/GetReportByReportArea

Request Information

URI Parameters

None.

Body Parameters

ReportRequest
NameDescriptionTypeAdditional information
ReportArea

EReportAreaDTO

None.

ExhibitorId

globally unique identifier

None.

InvoiceId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "reportArea": 1,
  "exhibitorId": "f24bdcf5-e21a-4ced-a477-5004ade90421",
  "invoiceId": "0cd19bd2-6cee-4c30-b7c4-1bbd6857560a"
}

application/xml, text/xml

Sample:
<ReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rest.DynamicReportsServices.DTOs">
  <ExhibitorId>f24bdcf5-e21a-4ced-a477-5004ade90421</ExhibitorId>
  <InvoiceId>0cd19bd2-6cee-4c30-b7c4-1bbd6857560a</InvoiceId>
  <ReportArea>ShoppingCart</ReportArea>
</ReportRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReportResult
NameDescriptionTypeAdditional information
Status

EResultStatus

None.

ReportFileUrl

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "reportFileUrl": "sample string 1",
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<ReportResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rest.DynamicReportsServices.DTOs">
  <Message>sample string 2</Message>
  <ReportFileUrl>sample string 1</ReportFileUrl>
  <Status>Success</Status>
</ReportResult>