GET api/timeClientFunction/refNumFuncsForClient/{ClientID}
Retrieve a list of Functions assigned to a specified client that have the ReferenceType = ClientReferenceNumber (3)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SelectItem| Name | Description | Type | Additional information |
|---|---|---|---|
| label | string |
None. |
|
| value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"label": "sample string 1",
"value": "sample string 2"
},
{
"label": "sample string 1",
"value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfSelectItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Models">
<SelectItem>
<label>sample string 1</label>
<value>sample string 2</value>
</SelectItem>
<SelectItem>
<label>sample string 1</label>
<value>sample string 2</value>
</SelectItem>
</ArrayOfSelectItem>