POST api/FollowUps

Request Information

URI Parameters

None.

Body Parameters

FollowUp
NameDescriptionTypeAdditional information
FollowUpId

integer

None.

Name

string

Required

Summery

string

None.

AddToCallBackList

boolean

None.

Details

string

None.

IsActive

boolean

Required

ChartReview

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "followUpId": 1,
  "name": "sample string 2",
  "summery": "sample string 3",
  "addToCallBackList": true,
  "details": "sample string 5",
  "isActive": true,
  "chartReview": true
}

text/html

Sample:
{"followUpId":1,"name":"sample string 2","summery":"sample string 3","addToCallBackList":true,"details":"sample string 5","isActive":true,"chartReview":true}

application/xml, text/xml

Sample:
<FollowUp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UrgentCareExtra.Data.Models">
  <AddToCallBackList>true</AddToCallBackList>
  <ChartReview>true</ChartReview>
  <Details>sample string 5</Details>
  <FollowUpId>1</FollowUpId>
  <IsActive>true</IsActive>
  <Name>sample string 2</Name>
  <Summery>sample string 3</Summery>
</FollowUp>

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 'FollowUp'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.