POST api/DHQ/CreateDHQUser

Request Information

URI Parameters

None.

Body Parameters

CreateDHQUserRequest
NameDescriptionTypeAdditional information
Name

string

None.

DHQId

integer

None.

DHQDepId

integer

None.

IsAutoGenrated

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "DHQId": 2,
  "DHQDepId": 3,
  "IsAutoGenrated": true
}

application/xml, text/xml

Sample:
<CreateDHQUserRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PatientReferralsAPI.Models.DHQ">
  <DHQDepId>3</DHQDepId>
  <DHQId>2</DHQId>
  <IsAutoGenrated>true</IsAutoGenrated>
  <Name>sample string 1</Name>
</CreateDHQUserRequest>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.