POST api/Notification/NotifySentBackForPeriodBasedTasksToTeamMembers

Request Information

URI Parameters

None.

Body Parameters

SentBackEnt
NameDescriptionTypeAdditional information
CheckListId

integer

None.

SentBackTasksList

Collection of SentBackTasksEnt

None.

Request Formats

application/json, text/json

Sample:
{
  "CheckListId": 1,
  "SentBackTasksList": [
    {
      "TaskMappingId": 1,
      "ResponsibleTeamId": 2,
      "ReleventClauseReference": 3,
      "TaskName": "sample string 4",
      "EventId": 5,
      "EventName": "sample string 6",
      "SentBackDate": "sample string 7",
      "SR_NO": 8,
      "Due_Date": "sample string 9"
    },
    {
      "TaskMappingId": 1,
      "ResponsibleTeamId": 2,
      "ReleventClauseReference": 3,
      "TaskName": "sample string 4",
      "EventId": 5,
      "EventName": "sample string 6",
      "SentBackDate": "sample string 7",
      "SR_NO": 8,
      "Due_Date": "sample string 9"
    }
  ]
}

application/xml, text/xml

Sample:
<SentBackEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CommonLibrary.Entity">
  <CheckListId>1</CheckListId>
  <SentBackTasksList>
    <SentBackTasksEnt>
      <Due_Date>sample string 9</Due_Date>
      <EventId>5</EventId>
      <EventName>sample string 6</EventName>
      <ReleventClauseReference>3</ReleventClauseReference>
      <ResponsibleTeamId>2</ResponsibleTeamId>
      <SR_NO>8</SR_NO>
      <SentBackDate>sample string 7</SentBackDate>
      <TaskMappingId>1</TaskMappingId>
      <TaskName>sample string 4</TaskName>
    </SentBackTasksEnt>
    <SentBackTasksEnt>
      <Due_Date>sample string 9</Due_Date>
      <EventId>5</EventId>
      <EventName>sample string 6</EventName>
      <ReleventClauseReference>3</ReleventClauseReference>
      <ResponsibleTeamId>2</ResponsibleTeamId>
      <SR_NO>8</SR_NO>
      <SentBackDate>sample string 7</SentBackDate>
      <TaskMappingId>1</TaskMappingId>
      <TaskName>sample string 4</TaskName>
    </SentBackTasksEnt>
  </SentBackTasksList>
</SentBackEnt>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SentBackEnt'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.