POST api/ProgramBenefits

Request Information

URI Parameters

None.

Body Parameters

ProgramBenefits
NameDescriptionTypeAdditional information
PatientId

string

None.

ClientName

string

None.

HTN

boolean

None.

DIAB

boolean

None.

CuffEligible

boolean

None.

GlucEligible

boolean

None.

VisitNeeded

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientId": "sample string 1",
  "ClientName": "sample string 2",
  "HTN": true,
  "DIAB": true,
  "CuffEligible": true,
  "GlucEligible": true,
  "VisitNeeded": true
}

application/xml, text/xml

Sample:
<ProgramBenefits xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI">
  <ClientName>sample string 2</ClientName>
  <CuffEligible>true</CuffEligible>
  <DIAB>true</DIAB>
  <GlucEligible>true</GlucEligible>
  <HTN>true</HTN>
  <PatientId>sample string 1</PatientId>
  <VisitNeeded>true</VisitNeeded>
</ProgramBenefits>

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.