POST v2/TcuSubscriptions/Terminate/Imei

Terminates TCU subscriptions

Request Information

URI Parameters

None.

Body Parameters

A list of IMEIs to terminate

Collection of string

Request 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
NameDescriptionTypeAdditional 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>