POST api/GapAnalysis

Request Information

URI Parameters

None.

Body Parameters

Customer
NameDescriptionTypeAdditional information
CustomerCode

string

None.

EmailSchedule

EmailSchedule

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerCode": "sample string 1",
  "EmailSchedule": {
    "Occurance": {
      "IsFrequencyWeekly": true,
      "WeeklyFrequency": 2,
      "WeekDay": "sample string 3",
      "MonthlyWeekSequence": 4,
      "MonthDay": "sample string 5",
      "MonthlyFrequence": 6
    },
    "Duration": {
      "NoOfOccurances": 1,
      "EndDate": "2025-08-04T20:45:10.0178847+10:00",
      "IsNeverEnding": true
    }
  }
}

application/xml, text/xml

Sample:
<Customer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BackgroundSchedularJobs.Models">
  <CustomerCode>sample string 1</CustomerCode>
  <EmailSchedule>
    <Duration>
      <EndDate>2025-08-04T20:45:10.0178847+10:00</EndDate>
      <IsNeverEnding>true</IsNeverEnding>
      <NoOfOccurances>1</NoOfOccurances>
    </Duration>
    <Occurance>
      <IsFrequencyWeekly>true</IsFrequencyWeekly>
      <MonthDay>sample string 5</MonthDay>
      <MonthlyFrequence>6</MonthlyFrequence>
      <MonthlyWeekSequence>4</MonthlyWeekSequence>
      <WeekDay>sample string 3</WeekDay>
      <WeeklyFrequency>2</WeeklyFrequency>
    </Occurance>
  </EmailSchedule>
</Customer>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.