GET ProviderComm/WorkingSchedule/AvailableOption

Get the list of options for Available dropdownlist

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ParaCodeList
NameDescriptionTypeAdditional information
CodeId

integer

None.

Code

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CodeId": 1,
    "Code": "sample string 2"
  },
  {
    "CodeId": 1,
    "Code": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfParaCodeList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <ParaCodeList>
    <Code>sample string 2</Code>
    <CodeId>1</CodeId>
  </ParaCodeList>
  <ParaCodeList>
    <Code>sample string 2</Code>
    <CodeId>1</CodeId>
  </ParaCodeList>
</ArrayOfParaCodeList>