GET api/PBI_dropDownApi/departementsByContract/{ContractID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ContractID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DropDownItemViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Label | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "52515f1e-d7e8-4ae2-b2ac-ba77de6046fa",
"label": "sample string 1"
},
{
"id": "52515f1e-d7e8-4ae2-b2ac-ba77de6046fa",
"label": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfDropDownItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<DropDownItemViewModel>
<ID>52515f1e-d7e8-4ae2-b2ac-ba77de6046fa</ID>
<Label>sample string 1</Label>
</DropDownItemViewModel>
<DropDownItemViewModel>
<ID>52515f1e-d7e8-4ae2-b2ac-ba77de6046fa</ID>
<Label>sample string 1</Label>
</DropDownItemViewModel>
</ArrayOfDropDownItemViewModel>