POST /Japi/Tigrillo/terminateSIMs

Terminates multiple SIMs, and assigns them a pendingDeprovision status. If terminated (unprovisioned), the SIM will stop connecting to the network. Service charges will stop unless the SIM is in contract, in which case the customer is liable for the rest of the service charges up until the end date of the contract. Termination is not instant – Eseye must verify the termination.In some instances, you can reprovision a terminated SIM. For more information, see POST /Japi/Tigrillo/activateSIMs. Allow two hours for the reprovisioning process to complete.

Authentication

  • User required to login

Headers

For information about headers, see Configuring headers.

Request Body application/json

Schema

Object name Description Required?
sims The array, listing all ICCIDs you want to terminate.
ICCID The SIM ICCID that you want to terminate

Example

Copy
Body raw JSON
{ "sims" : [
"8944538523013777333" ,
"8944538523014222888"
]
}

Responses application/json

Schema

JSON key Description
status

The array, containing details about the request status.

status

"OK" – the request processed successfully

"ERR" – the request failed

errorCode

"" – the request processed successfully

"<ErrorCodeNumber>" – the request failed because of this specific error.

For more information, see Troubleshooting errors: Tigrillo API.

errorMessage

"" – the request processed successfully

"<ErrorCodeMessage>" – displays an explanation of the error if the request failed.

For more information, see Troubleshooting errors: Tigrillo API.

simStatuses The array, listing all ICCIDs that failed to terminate. If all SIMs are successfully terminated, this section does not appear in the returned results.
"<ICCID>": errorMessage The ICCID of each SIM that failed to terminate, with a reason for the error.

Example

Copy
JSON
{
    "status": {
        "status": "OK",
        "errorCode": "",
        "errorMessage": ""
    }
}