POST api/ScheduleReport/SaveReportRecipient

Request Information

URI Parameters

None.

Body Parameters

ReportRecipientDTO
NameDescriptionTypeAdditional information
Id

integer

None.

ReportId

integer

None.

Email

string

String length: inclusive between 0 and 100

Type

integer

None.

TypeName

string

String length: inclusive between 0 and 50

Name

string

String length: inclusive between 0 and 100

ValidFlag

boolean

None.

DateCreated

date

None.

DateUpdated

date

None.

UserIDCreated

integer

None.

UserIDUpdated

integer

None.

CompanyCode

string

String length: inclusive between 0 and 20

IsExcludeDiscount

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ReportId": 2,
  "Email": "sample string 3",
  "Type": 4,
  "TypeName": "sample string 5",
  "Name": "sample string 6",
  "ValidFlag": true,
  "DateCreated": "2025-04-03T19:02:20.8832744-07:00",
  "DateUpdated": "2025-04-03T19:02:20.8832744-07:00",
  "UserIDCreated": 10,
  "UserIDUpdated": 11,
  "CompanyCode": "sample string 12",
  "IsExcludeDiscount": true
}

application/xml, text/xml

Sample:
<ReportRecipientDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO.Report">
  <CompanyCode xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">sample string 12</CompanyCode>
  <DateCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">2025-04-03T19:02:20.8832744-07:00</DateCreated>
  <DateUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">2025-04-03T19:02:20.8832744-07:00</DateUpdated>
  <IsExcludeDiscount xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">true</IsExcludeDiscount>
  <UserIDCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">10</UserIDCreated>
  <UserIDUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">11</UserIDUpdated>
  <ValidFlag xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">true</ValidFlag>
  <Email>sample string 3</Email>
  <Id>1</Id>
  <Name>sample string 6</Name>
  <ReportId>2</ReportId>
  <Type>4</Type>
  <TypeName>sample string 5</TypeName>
</ReportRecipientDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfReportRecipientDTO
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

ReportRecipientDTO

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": {
    "Id": 1,
    "ReportId": 2,
    "Email": "sample string 3",
    "Type": 4,
    "TypeName": "sample string 5",
    "Name": "sample string 6",
    "ValidFlag": true,
    "DateCreated": "2025-04-03T19:02:20.8878144-07:00",
    "DateUpdated": "2025-04-03T19:02:20.8878144-07:00",
    "UserIDCreated": 10,
    "UserIDUpdated": 11,
    "CompanyCode": "sample string 12",
    "IsExcludeDiscount": true
  },
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfReportRecipientDTO_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">
    <CompanyCode xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">sample string 12</CompanyCode>
    <DateCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">2025-04-03T19:02:20.8878144-07:00</DateCreated>
    <DateUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">2025-04-03T19:02:20.8878144-07:00</DateUpdated>
    <IsExcludeDiscount xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">true</IsExcludeDiscount>
    <UserIDCreated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">10</UserIDCreated>
    <UserIDUpdated xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">11</UserIDUpdated>
    <ValidFlag xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">true</ValidFlag>
    <d2p1:Email>sample string 3</d2p1:Email>
    <d2p1:Id>1</d2p1:Id>
    <d2p1:Name>sample string 6</d2p1:Name>
    <d2p1:ReportId>2</d2p1:ReportId>
    <d2p1:Type>4</d2p1:Type>
    <d2p1:TypeName>sample string 5</d2p1:TypeName>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfReportRecipientDTO_Sapgg6g_S>