POST /v1/devices/profile/actions/deactivate
Deactivate an embedded SIM for Consumer eSIM for Enterprise.
The request header must set the content-type to JSON, contain a current ThingSpace authorization token and a current VZ-M2M session token. For more details on how to get these tokens, visit Getting Started.
Parameter Name | Data Type | Description |
---|---|---|
Authorization required |
string | HTTP Authorization bearer token: |
VZ-M2M-Token required |
string | A valid session token: |
Content-Type required |
string | Must be application/json: |
POST https://thingspace.verizon.com/api/m2m/v1//devices/profile/actions/deactivate
Parameter | Data Type | Description |
---|---|---|
devices |
array | An array of deviceIds. Each deviceId will contain:
|
id |
string | The numeric ID of the device. |
kind |
string | The type of device ID represented by the ID value. Deactivating a SIM will only use EID and ICCID. |
accountName required |
string | The name of the account. This is numeric and is in the format "0000123456-00001". Leading zeros must be included. |
carrierName | string | The carrier providing cellular network access. The default is Verizon Wireless. |
reasonCode | string | A 2-character code why the change is being made. |
etfwaiver | boolean | This flags a billing modification and indicates if the customer wants to use an Early Termination Fee waiver (true) or not (false) for this transaction. |
checkFallbackProfile |
boolean | An indicator of the fallback being enabled (true) or not (false) . |
Example request:
{
"devices":[
{
"deviceIds":[
{
"id":"20-digit ICCID",
"kind":"iccid"
},
{
"id":"32-digit EID",
"kind":"eid"
}
]
}
],
"accountName":"0000123456-00001",
"carrierName":"name of the mobile service provider",
"reasonCode":"FF",
"etfWaiver":false,
"checkFallbackProfile":false
}
Status 200
A successful response shows a system generated request ID to track the request.
Example Response:
{
"requestId": "d1f08526-5443-4054-9a29-4456490ea9f8"
}
These endpoints send responses asynchronously. In order to read the results a callback is required. To learn more about callbacks, please visit About Callback Services.
Example callback response:
{
"requestId":"d1f08526-5443-4054-9a29-4456490ea9f8",
"deviceIds":[
{
"id":"32-digit EID",
"kind":"eid"
},
{
"id":"15-digit IMEI",
"kind":"imei"
},
{
"id":"20-digit ICCID",
"kind":"iccid"
}
],
"deviceResponse":{
"deviceProfileResponse":{
"deviceIdentifierCollection":[
{
"id":"32-digit EID",
"kind":"eid"
},
{
"id":"15-digit IMEI",
"kind":"imei"
},
{
"id":"20-digt ICCID",
"kind":"iccid"
}
],
"state":"DEACTIVE",
"profileStatus":"UNKNOWN",
"carrierName":"name of the mobile service provider",
"profileRole":"LOCAL"
}
},
"status":"SUCCESS",
"callbackCount":1,
"maxCallbackThreshold":4
}
Parameter | Data Type | Description |
---|---|---|
requestId | string | The requestId being viewed. This is a system generated value from the request above. |
deviceIds |
array | An array of devices being queried by the request. Each deviceId will contain:
|
id |
string | The numeric ID of the device. |
kind |
string | The type of device ID represented by the ID value. This could be:
|
deviceResponse | array | Contains the deviceProfileResponse, status and number of callback records returned. |
deviceProfileResponse | array | Contains the details and status of the devices and the request. |
deviceIdentifierCollection | array | Similar to deviceIds above, but this lists the available identifiers for devices responding. |
state | string | The state of the device(s) responding. |
profileStatus | string | Indicates the profile state and will show what request was made. |
carrierName | string | The name of the mobile service provider |
profileRole | string | Indicates if the profile used is on the device (local) or not (remote) |
status | string | The status of the deviceResponse. |
callbackCount | string | The number of responses for deviceResponse found. |
maxCallbackThreshold | string | The maximum number of responses for deviceResponse allowed. |
All error responses will be in the following format
{
"errorCode": "The 3-digit HTML error code",
"errorMessage": "string"
}