POST api/stalejobs/create-followup

Request Information

URI Parameters

None.

Body Parameters

CreateFollowupDto
NameDescriptionTypeAdditional information
JobId

integer

None.

AssigneeId

integer

None.

Notes

string

None.

DryRun

boolean

None.

StartDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JobId": 1,
  "AssigneeId": 2,
  "Notes": "sample string 3",
  "DryRun": true,
  "StartDate": "sample string 4"
}

application/xml, text/xml

Sample:
<StaleJobsController.CreateFollowupDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMGBridge.Controllers">
  <AssigneeId>2</AssigneeId>
  <DryRun>true</DryRun>
  <JobId>1</JobId>
  <Notes>sample string 3</Notes>
  <StartDate>sample string 4</StartDate>
</StaleJobsController.CreateFollowupDto>

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.