GET api/Configuration/User?userName={userName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of User| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
None. |
|
| weekendAppointments | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"userName": "sample string 1",
"weekendAppointments": 2
},
{
"userName": "sample string 1",
"weekendAppointments": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfUser xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<User>
<userName>sample string 1</userName>
<weekendAppointments>2</weekendAppointments>
</User>
<User>
<userName>sample string 1</userName>
<weekendAppointments>2</weekendAppointments>
</User>
</ArrayOfUser>