GET v1/Subscriptions/{tcuTypeId}/Customers
Gets customers eligible to be sold the specific TCU type
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tcuTypeId |
The TCU type ID. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Lhp.EquipmentIntelligence.WebApi.Client.Models.SubscriptionCustomerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId |
The customer ID |
integer |
None. |
| Name |
The customer name |
string |
None. |
| Type |
The customer type |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerId": 1,
"Name": "sample string 2",
"Type": "sample string 3"
},
{
"CustomerId": 1,
"Name": "sample string 2",
"Type": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfSubscriptionCustomerModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SubscriptionCustomerModel>
<CustomerId>1</CustomerId>
<Name>sample string 2</Name>
<Type>sample string 3</Type>
</SubscriptionCustomerModel>
<SubscriptionCustomerModel>
<CustomerId>1</CustomerId>
<Name>sample string 2</Name>
<Type>sample string 3</Type>
</SubscriptionCustomerModel>
</ArrayOfSubscriptionCustomerModel>