POST v2/TcuSubscriptions/Terminate/Vin
Terminates TCU subscriptions
Request Information
URI Parameters
None.
Body Parameters
A list of VINs with TCUs to terminate
Collection of stringRequest Formats
application/json, text/json
Sample:
[ "sample string 1", "sample string 2" ]
application/x-www-form-urlencoded
Sample:
item=value1&item=value2
Response Information
Resource Description
A dictionary of IMEIs with the termination result
Collection of Lhp.EquipmentIntelligence.Data.Models.CustomerTcuSubscription.SubscriptionResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerTcuSubscriptionId | integer |
None. |
|
| Key | string |
None. |
|
| SubscriptionName | string |
None. |
|
| TcuName | string |
None. |
|
| IsSuccessful | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerTcuSubscriptionId": 1,
"Key": "sample string 1",
"SubscriptionName": "sample string 2",
"TcuName": "sample string 3",
"IsSuccessful": true,
"Message": "sample string 5"
},
{
"CustomerTcuSubscriptionId": 1,
"Key": "sample string 1",
"SubscriptionName": "sample string 2",
"TcuName": "sample string 3",
"IsSuccessful": true,
"Message": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfSubscriptionResultModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SubscriptionResultModel>
<CustomerTcuSubscriptionId>1</CustomerTcuSubscriptionId>
<Key>sample string 1</Key>
<SubscriptionName>sample string 2</SubscriptionName>
<TcuName>sample string 3</TcuName>
<IsSuccessful>true</IsSuccessful>
<Message>sample string 5</Message>
</SubscriptionResultModel>
<SubscriptionResultModel>
<CustomerTcuSubscriptionId>1</CustomerTcuSubscriptionId>
<Key>sample string 1</Key>
<SubscriptionName>sample string 2</SubscriptionName>
<TcuName>sample string 3</TcuName>
<IsSuccessful>true</IsSuccessful>
<Message>sample string 5</Message>
</SubscriptionResultModel>
</ArrayOfSubscriptionResultModel>