POST api/Patient/hl7bedcleaning

Updates a specific Bed Cleaning Request. Streamlined for use with an HL7 interface.

Request Information

URI Parameters

None.

Body Parameters

Collection of HL7BedCleaningMessage
NameDescriptionTypeAdditional information
ID

integer

None.

Unit

string

None.

Room

string

None.

Bed

integer

None.

Status

string

None.

CleaningType

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Unit": "sample string 2",
    "Room": "sample string 3",
    "Bed": 4,
    "Status": "sample string 5",
    "CleaningType": "sample string 6"
  },
  {
    "ID": 1,
    "Unit": "sample string 2",
    "Room": "sample string 3",
    "Bed": 4,
    "Status": "sample string 5",
    "CleaningType": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHL7BedCleaningMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <HL7BedCleaningMessage>
    <Bed>4</Bed>
    <CleaningType>sample string 6</CleaningType>
    <ID>1</ID>
    <Room>sample string 3</Room>
    <Status>sample string 5</Status>
    <Unit>sample string 2</Unit>
  </HL7BedCleaningMessage>
  <HL7BedCleaningMessage>
    <Bed>4</Bed>
    <CleaningType>sample string 6</CleaningType>
    <ID>1</ID>
    <Room>sample string 3</Room>
    <Status>sample string 5</Status>
    <Unit>sample string 2</Unit>
  </HL7BedCleaningMessage>
</ArrayOfHL7BedCleaningMessage>

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 'List`1'.

Response Information

Resource Description

True if successful, false otherwise

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>