Update Cellular Modules Sim Security (v2.0)
PUT/v2.0/api/tenants/:tenant_id/elements/:element_id/cellular_modules/:cellular_module_id/sim_security/:sim_security_id
Update the cellular modules sim security information.
Request
Path Parameters
ID of the tenant.
ID of the element.
ID of the cellular module.
ID of the sim security.
- application/json
Body
The description of the sim security. Max size = 256.
The ID of the sim security.
The name of the sim security. Max size = 128.urce name.
The pin of the sim security. Pin must be numeric with minimum 4 and maximum 8 digits.
The remove pin of the sim security.
The slot number of the sim.
An information field that can be added to identify the sim security. Maximum 10 unique tags of length 1024 each are allowed.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
The description of the sim security. Max size = 256.
The ID of the sim security.
The name of the sim security. Max size = 128.
The pin of the sim security. Pin must be numeric with minimum 4 and maximum 8 digits.
The remove pin of the sim security.
The slot number of the sim.
An information field that can be added to identify the sim security. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"name": "string",
"pin": "string",
"remove_pin": true,
"slot_number": 0,
"tags": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_JSON_INPUT"
},
{
"code": "INVALID_JSON_EXTRA_ATTRIBUTE"
},
{
"code": "INVALID_JSON_COMMON_ATTR_MISMATCH"
},
{
"code": "SIM_SECURITY_CONFIG_REMOVE_PIN_REQD"
},
{
"code": "SIM_SECURITY_CONFIG_PIN_MUST_BE_EMPTY"
},
{
"code": "SIM_SECURITY_CONFIG_MUST_HAVE_PIN"
},
{
"code": "SIM_SECURITY_CONFIG_INVALID_PIN"
},
{
"code": "SIM_SECURITY_PIN_STORAGE_FAILURE"
},
{
"code": "SIM_SECURITY_CONFIG_UNSUPPORTED_DEVICESW"
}
]
}
}