Skip to main content

Get SIM Enable/Disable Status

Returns the status of IMEI lock, whether the SIM is currently locked to the device or not.

Args
URL Path ICCID
The ICCID of the SIM for which the enabled status is to be retrieved.

Response
200
Success FetchSuccess
Response Body

Error   boolean

Indicates if there was an error.

Message   string

Message indicating the result of the operation.

StatusCode   integer

HTTP status code of the response.

Data   object

Contains the enabled status of the SIM.

Enabled   boolean

Indicates whether the SIM is enabled or disabled.

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 'https://link.monoz.io/api/v1/mti/Sim/Enable/1234567890' \
--header 'X-API-Key: abcdefgh123456'
Response
{
"Error": false,
"Message": "FetchSuccess",
"StatusCode": 200,
"Data": {
"Enabled": true
}
}