GET api/PBI_dropDownApi/contractsBySiteCustomer/{SiteCustomerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteCustomerID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DropDownObjectViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Label | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "8c219b2d-574a-4cf4-9b1b-19ea28b5d6a2",
"label": "sample string 1"
},
{
"id": "8c219b2d-574a-4cf4-9b1b-19ea28b5d6a2",
"label": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfDropDownObjectViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<DropDownObjectViewModel>
<ID>8c219b2d-574a-4cf4-9b1b-19ea28b5d6a2</ID>
<Label>sample string 1</Label>
</DropDownObjectViewModel>
<DropDownObjectViewModel>
<ID>8c219b2d-574a-4cf4-9b1b-19ea28b5d6a2</ID>
<Label>sample string 1</Label>
</DropDownObjectViewModel>
</ArrayOfDropDownObjectViewModel>