Get Cellular Modules (v2.0)
GET/v2.0/api/tenants/:tenant_id/machines/:machine_id/cellular_modules
List all cellular modules.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
machine_id stringrequired
The ID of the device.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The total number.
id string
The ID.
items MachineCellularModuleInfo[]
id string
The ID of the element.
imei string
The IMEI number.
manufacturer string
The manufacturer of the firmware.
model_name string
The model name.
serial_number string
The serial number.
tenant_id stringrequired
The tenant ID.
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"imei": "string",
"manufacturer": "string",
"model_name": "string",
"serial_number": "string",
"tenant_id": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "MACHINE_NOT_FOUND"
}
]
}
}
Loading...