GET api/ReportExecutor?reportId={reportId}&exhibitorId={exhibitorId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
reportId

integer

Required

exhibitorId

globally unique identifier

Required

Body Parameters

None.

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>