GET api/fluxmultiapi/fluxmultis?active={active}&siteId={siteId}&customerId={customerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
active

boolean

None.

siteId

globally unique identifier

None.

customerId

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FullInfoListViewModel
NameDescriptionTypeAdditional information
active

boolean

None.

customerName

string

None.

description

string

None.

id

globally unique identifier

None.

siteName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "customerName": "sample string 2",
    "description": "sample string 3",
    "id": "bfbbd216-9dff-44ff-bb19-9db9ee18e69c",
    "siteName": "sample string 5"
  },
  {
    "active": true,
    "customerName": "sample string 2",
    "description": "sample string 3",
    "id": "bfbbd216-9dff-44ff-bb19-9db9ee18e69c",
    "siteName": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOffullInfoList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <fullInfoList>
    <active>true</active>
    <customerName>sample string 2</customerName>
    <description>sample string 3</description>
    <id>bfbbd216-9dff-44ff-bb19-9db9ee18e69c</id>
    <siteName>sample string 5</siteName>
  </fullInfoList>
  <fullInfoList>
    <active>true</active>
    <customerName>sample string 2</customerName>
    <description>sample string 3</description>
    <id>bfbbd216-9dff-44ff-bb19-9db9ee18e69c</id>
    <siteName>sample string 5</siteName>
  </fullInfoList>
</ArrayOffullInfoList>