POST api/ClinicManagement/PostClinicServicesForRoom

Posts the clinic services for room.

Request Information

Parameters

NameDescriptionAdditional information
request
The request.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "AppContextId": "4393f858-9465-4be6-9d48-21afbde63f92",
  "Parameter": {
    "LocationId": 1,
    "LocationRoomId": 2,
    "ClinicServices": [
      1,
      2,
      3
    ]
  }
}

application/xml, text/xml

Sample:
<AuthenticatedInputOfClinicServiceLocationRoomInputxuv6Fhnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMT.UP">
  <Parameter xmlns:d2p1="http://schemas.datacontract.org/2004/07/CMT.UP.Web.Models">
    <d2p1:ClinicServices xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
      <d3p1:int>3</d3p1:int>
    </d2p1:ClinicServices>
    <d2p1:LocationId>1</d2p1:LocationId>
    <d2p1:LocationRoomId>2</d2p1:LocationRoomId>
  </Parameter>
  <AppContextId>4393f858-9465-4be6-9d48-21afbde63f92</AppContextId>
</AuthenticatedInputOfClinicServiceLocationRoomInputxuv6Fhnt>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

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

Sample:

Sample not available.