Skip to main content

SIM Reset Request

Initiates the process of SIM connectivity reset and returns ok if the process was successfully started.

Args​
ICCID
Unique ICCID of target device
Response​
200
Success UpdateSuccess
Response Body​

StatusCode   integer

HTTP status code of the response.

Message   string

Message indicating the result of the operation.

401
Unauthorized If the API Key is wrong or there is no permission to access the requested data.
404
Not Found If the specified ICCID was not found in the system.
500
Server Error As described in the Message field.

cURL​
    curl --location --request PUT 'https://link.monoz.io/api/v1/mti/Sim/Reset' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: exampleapikeyabcdefgh123456' \
--data '{
"ICCID": "1234567890"
}'
Response​
{
"StatusCode": 200,
"Message": "UpdateSuccess"
}