POST api/ExportScheduleReport/SendExportReport

Request Information

URI Parameters

None.

Body Parameters

ExportReportAPIDTO
NameDescriptionTypeAdditional information
ReportId

integer

None.

Date

date

None.

UserName

string

String length: inclusive between 0 and 100

Password

string

String length: inclusive between 0 and 50

Request Formats

application/json, text/json

Sample:
{
  "ReportId": 1,
  "Date": "2025-04-03T19:03:23.8545648-07:00",
  "UserName": "sample string 3",
  "Password": "sample string 4"
}

application/xml, text/xml

Sample:
<ExportReportAPIDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.Report">
  <Date>2025-04-03T19:03:23.8545648-07:00</Date>
  <Password>sample string 4</Password>
  <ReportId>1</ReportId>
  <UserName>sample string 3</UserName>
</ExportReportAPIDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfExportReportAPIDTO
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

ExportReportAPIDTO

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": {
    "ReportId": 1,
    "Date": "2025-04-03T19:03:24.3758925-07:00",
    "UserName": "sample string 3",
    "Password": "sample string 4"
  },
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfExportReportAPIDTO_Sapgg6g_S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
  <isSuccess>true</isSuccess>
  <jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.Report">
    <d2p1:Date>2025-04-03T19:03:24.3758925-07:00</d2p1:Date>
    <d2p1:Password>sample string 4</d2p1:Password>
    <d2p1:ReportId>1</d2p1:ReportId>
    <d2p1:UserName>sample string 3</d2p1:UserName>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfExportReportAPIDTO_Sapgg6g_S>