GET api/BedCleaning/cleaningtypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SimpleCleaningType| Name | Description | Type | Additional information | 
|---|---|---|---|
| ID | integer | 
                             None.  | 
                |
| Description | string | 
                             None.  | 
                |
| EnDescription | string | 
                             None.  | 
                |
| AccountID | integer | 
                             None.  | 
                |
| TouchTone | string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "AccountID": 3,
    "TouchTone": "sample string 4"
  },
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "AccountID": 3,
    "TouchTone": "sample string 4"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfSimpleCleaningType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
  <SimpleCleaningType>
    <AccountID>3</AccountID>
    <Description>sample string 2</Description>
    <ID>1</ID>
    <TouchTone>sample string 4</TouchTone>
  </SimpleCleaningType>
  <SimpleCleaningType>
    <AccountID>3</AccountID>
    <Description>sample string 2</Description>
    <ID>1</ID>
    <TouchTone>sample string 4</TouchTone>
  </SimpleCleaningType>
</ArrayOfSimpleCleaningType>