GET api/PBI_dropDownApi/siteCustomersBySite/{SiteID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SiteID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DropDownObjectViewModel
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

Label

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "42667e06-ea8e-4cd6-85bc-7e20c0d2bea8",
    "label": "sample string 1"
  },
  {
    "id": "42667e06-ea8e-4cd6-85bc-7e20c0d2bea8",
    "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>42667e06-ea8e-4cd6-85bc-7e20c0d2bea8</ID>
    <Label>sample string 1</Label>
  </DropDownObjectViewModel>
  <DropDownObjectViewModel>
    <ID>42667e06-ea8e-4cd6-85bc-7e20c0d2bea8</ID>
    <Label>sample string 1</Label>
  </DropDownObjectViewModel>
</ArrayOfDropDownObjectViewModel>